src/AdminBundle/AdminBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace AdminBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. class AdminBundle extends Bundle
  5. {
  6.     public function getParent()
  7.     {
  8.         return 'SonataAdminBundle';
  9.     }
  10.     public function getPath(): string
  11.     {
  12.         return __DIR__;
  13.     }
  14. }