| 1 | <?php |
||
| 8 | class Not implements ConditionInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var ConditionInterface |
||
| 12 | */ |
||
| 13 | private $condition; |
||
| 14 | /** |
||
| 15 | * @param ConditionInterface $condition |
||
| 16 | */ |
||
| 17 | 2 | public function __construct(ConditionInterface $condition) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @see MetaborStd\Statemachine.ConditionInterface::checkCondition() |
||
| 24 | */ |
||
| 25 | 1 | public function checkCondition($subject, ArrayAccess $context) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @see MetaborStd.NamedInterface::getName() |
||
| 32 | */ |
||
| 33 | 1 | public function getName() |
|
| 37 | } |
||
| 38 |