mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-16 21:01:16 +02:00
9 lines
177 B
PHP
9 lines
177 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Interpreter;
|
|
|
|
abstract class AbstractExp
|
|
{
|
|
abstract public function interpret(Context $context): bool;
|
|
}
|