| 1 | <?php namespace Limoncello\Flute\Validation\Execution; |
||
| 26 | class ContextStorage extends BaseContextStorage implements ContextStorageInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var ContainerInterface |
||
| 30 | */ |
||
| 31 | private $container; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param ContainerInterface $container |
||
| 35 | * @param array $blocks |
||
| 36 | */ |
||
| 37 | public function __construct(ContainerInterface $container, array $blocks) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritdoc |
||
| 45 | */ |
||
| 46 | public function getContainer(): ContainerInterface |
||
| 50 | } |
||
| 51 |