src/Entity/ActivityArea.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Model\Entity;
  4. use App\Repository\ActivityAreaRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Serializer\Annotation\Groups;
  7. #[ORM\Entity(repositoryClassActivityAreaRepository::class)]
  8. class ActivityArea extends Entity
  9. {
  10.     #[ORM\Column(length150)]
  11.     #[Groups('activity_area:read')]
  12.     private ?string $name null;
  13.     public function __construct(string $name null)
  14.     {
  15.         $this->name $name;
  16.     }
  17.     public function getName(): ?string
  18.     {
  19.         return $this->name;
  20.     }
  21.     public function setName(string $name): self
  22.     {
  23.         $this->name $name;
  24.         return $this;
  25.     }
  26. }