| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class JsonSchemaOpisServiceProvider implements ServiceProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param \Pimple\Container $pimple |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function register(Container $pimple): void |
||
| 16 | { |
||
| 17 | $this->createValidatorFactory($pimple); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param \Pimple\Container $container |
||
| 22 | * |
||
| 23 | * @return \Pimple\ServiceProviderInterface |
||
| 24 | */ |
||
| 25 | protected function createValidatorFactory(Container $container): ServiceProviderInterface |
||
| 32 | } |
||
| 33 | } |
||
| 34 |