src/Entity/SonataMediaGallery.php line 16

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\SonataMediaGalleryRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Sonata\MediaBundle\Entity\BaseGallery;
  7. /**
  8.  * @ORM\Entity
  9.  * @ORM\Table(name="media__gallery")
  10.  * @ORM\Entity(repositoryClass=SonataMediaGalleryRepository::class)
  11.  */
  12. class SonataMediaGallery extends BaseGallery
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     protected $id;
  20.     public function getId()
  21.     {
  22.         return $this->id;
  23.     }
  24. }