src/Entity/OtherService.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OtherServiceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassOtherServiceRepository::class)]
  6. class OtherService extends Service
  7. {
  8. }