| Total Complexity | 3 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class SettingsFormFactory implements SettingsFormFactoryInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ServiceRegistryInterface |
||
| 16 | */ |
||
| 17 | private $schemaRegistry; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var FormFactoryInterface |
||
| 21 | */ |
||
| 22 | private $formFactory; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param ServiceRegistryInterface $schemaRegistry |
||
| 26 | * @param FormFactoryInterface $formFactory |
||
| 27 | */ |
||
| 28 | public function __construct(ServiceRegistryInterface $schemaRegistry, FormFactoryInterface $formFactory) |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function create($schemaAlias, $data = null, array $options = []) |
||
| 60 |