src/Entity/Olympiad/Online/DirectionTranslation.php line 11

  1. <?php
  2. namespace App\Entity\Olympiad\Online;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  5. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  6. #[ORM\Table(name'olymp_online_direction_translation')]
  7. #[ORM\Entity]
  8. class DirectionTranslation implements TranslationInterface
  9. {
  10.     use TranslationTrait {
  11.         isEmpty as ttEmpty;
  12.     }
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue(strategy'AUTO')]
  15.     #[ORM\Column(type'integer')]
  16.     private ?int $id=null;
  17.    
  18.     #[ORM\Column(type'string'nullabletrue)]
  19.     private ?string $caption=null;
  20.     /**
  21.      * @return int|null
  22.      */
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     /**
  28.      * @param int|null $id
  29.      */
  30.     public function setId(?int $id): void
  31.     {
  32.         $this->id $id;
  33.     }
  34.     /**
  35.      * @return string|null
  36.      */
  37.     public function getCaption(): ?string
  38.     {
  39.         return $this->caption;
  40.     }
  41.     /**
  42.      * @param string|null $caption
  43.      */
  44.     public function setCaption(?string $caption): void
  45.     {
  46.         $this->caption $caption;
  47.     }
  48.    
  49.     
  50. }