vendor/fri0z/mldev-form-bundle/src/MLDevFormBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace MLDev\FormBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. use MLDev\FormBundle\DependencyInjection\MLDevFormExtension;
  5. class MLDevFormBundle extends Bundle
  6. {
  7.     public function getPath(): string
  8.     {
  9.         return dirname(__DIR__);
  10.     }
  11.     public function getContainerExtension()
  12.     {
  13.         return new MLDevFormExtension();
  14.     }
  15. }