| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class ValidatorBootstrapper extends Bootstrapper implements ILazyBootstrapper |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @inheritdoc |
||
| 19 | */ |
||
| 20 | public function getBindings(): array |
||
| 21 | { |
||
| 22 | return [ |
||
| 23 | Form::class, |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritdoc |
||
| 29 | */ |
||
| 30 | public function registerBindings(IContainer $container) |
||
| 33 | } |
||
| 34 | } |
||
| 35 |