src/Database/Domain/Entity/AbstractEntity.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Database\Domain\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Serializer\Annotation\Groups;
  5. /**
  6.  * @ORM\MappedSuperclass()
  7.  */
  8. abstract class AbstractEntity
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      *
  13.      * @ORM\Column(type="string")
  14.      *
  15.      * @Groups({"toast_session_section"})
  16.      */
  17.     protected ?string $id null;
  18.     public function getId()
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function setId($id): void
  23.     {
  24.         $this->id $id;
  25.     }
  26. }