| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 68 | public static function register(Nette\Configurator $config, string $extensionName = 'extendedForms') : void |
||
| 69 | { |
||
| 70 | 1 | $config->onCompile[] = function (Nette\Configurator $config, Nette\DI\Compiler $compiler) use ($extensionName) { |
|
| 71 | 1 | $compiler->addExtension($extensionName, new FormsExtension()); |
|
| 72 | 1 | }; |
|
| 73 | 1 | } |
|
| 74 | } |
||
| 75 |