Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | abstract class AbstractAssertionAction implements ActionInterface |
||
21 | { |
||
22 | /** @var LoggerInterface */ |
||
23 | protected $logger; |
||
24 | |||
25 | public function __construct(LoggerInterface $logger) |
||
26 | { |
||
27 | $this->logger = $logger; |
||
28 | } |
||
29 | |||
30 | public function execute(ContextInterface $context) |
||
36 | } |
||
37 | } |
||
38 | |||
39 | abstract protected function doExecute(AssertionContext $context); |
||
40 | } |
||
41 |