lib/boab/cms-bundle/src/Entity/Album.php line 13

Open in your IDE?
  1. <?php
  2. namespace Boab\CmsBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Boab\CmsBundle\Entity\Content;
  5. /**
  6.  * Album
  7.  * @ORM\Table(name="album")
  8.  * @ORM\Entity(repositoryClass="Boab\CmsBundle\Repository\AlbumRepository")
  9.  */
  10. class Album extends Content implements AlbumInterface
  11. {      
  12. }