for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\MediaBundle\Entity;
use Sonata\MediaBundle\Entity\BaseGalleryItem;
/**
* Class GalleryItem.
*
* @package Chamilo\MediaBundle\Entity
*/
class GalleryItem extends BaseGalleryItem
{
* @var int
protected $id;
* Get id.
* @return int $id
public function getId()
return $this->id;
}