src/Entity/Galeria.php line 12
- <?php
- namespace App\Entity;
- use Doctrine\ORM\Mapping as ORM;
- use Sonata\MediaBundle\Entity\BaseGallery;
- /**
- * @ORM\Entity
- * @ORM\Table(name="galeria")
- */
- class Galeria extends BaseGallery
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- protected ?int $id = null;
- public function getId(): ?int
- {
- return $this->id;
- }
- }