src/StartPlatz/Bundle/MentorsBundle/StartPlatzMentorsBundle.php line 16

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace App\StartPlatz\Bundle\MentorsBundle;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. /**
  5.  * MentorsBundle
  6.  *
  7.  * Manages mentors and experts in residence for STARTPLATZ ecosystem
  8.  * Includes three categories:
  9.  * - STARTPLATZ Mentors
  10.  * - AI Accelerator Mentors
  11.  * - Experts in Residence
  12.  */
  13. class StartPlatzMentorsBundle extends Bundle
  14. {
  15.     public function getPath(): string
  16.     {
  17.         return \dirname(__FILE__);
  18.     }
  19. }