<?php declare(strict_types=1);namespace App\StartPlatz\Bundle\MentorsBundle;use Symfony\Component\HttpKernel\Bundle\Bundle;/** * MentorsBundle * * Manages mentors and experts in residence for STARTPLATZ ecosystem * Includes three categories: * - STARTPLATZ Mentors * - AI Accelerator Mentors * - Experts in Residence */class StartPlatzMentorsBundle extends Bundle{ public function getPath(): string { return \dirname(__FILE__); }}