1 | <?php |
||
20 | abstract class AbstractAssertionAction implements ActionInterface |
||
21 | { |
||
22 | /** @var LoggerInterface */ |
||
23 | protected $logger; |
||
24 | |||
25 | /** |
||
26 | * @param LoggerInterface $logger |
||
27 | */ |
||
28 | 34 | public function __construct(LoggerInterface $logger) |
|
32 | |||
33 | /** |
||
34 | * @param ContextInterface $context |
||
35 | */ |
||
36 | 26 | public function execute(ContextInterface $context) |
|
44 | |||
45 | /** |
||
46 | * @param AssertionContext $context |
||
47 | */ |
||
48 | abstract protected function doExecute(AssertionContext $context); |
||
49 | } |
||
50 |