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