You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							40 lines
						
					
					
						
							876 B
						
					
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							876 B
						
					
					
				<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * This file is part of the <name> project.
 | 
						|
 *
 | 
						|
 * (c) <yourname> <youremail>
 | 
						|
 *
 | 
						|
 * For the full copyright and license information, please view the LICENSE
 | 
						|
 * file that was distributed with this source code.
 | 
						|
 */
 | 
						|
 | 
						|
namespace Chamilo\MediaBundle\Entity;
 | 
						|
 | 
						|
use Sonata\MediaBundle\Entity\BaseGalleryHasMedia as BaseGalleryHasMedia;
 | 
						|
 | 
						|
/**
 | 
						|
 * This file has been generated by the Sonata EasyExtends bundle ( http://sonata-project.org/bundles/easy-extends )
 | 
						|
 *
 | 
						|
 * References :
 | 
						|
 *   working with object : http://www.doctrine-project.org/projects/orm/2.0/docs/reference/working-with-objects/en
 | 
						|
 *
 | 
						|
 * @author <yourname> <youremail>
 | 
						|
 */
 | 
						|
class GalleryHasMedia extends BaseGalleryHasMedia
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var integer $id
 | 
						|
     */
 | 
						|
    protected $id;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get id
 | 
						|
     *
 | 
						|
     * @return integer $id
 | 
						|
     */
 | 
						|
    public function getId()
 | 
						|
    {
 | 
						|
        return $this->id;
 | 
						|
    }
 | 
						|
}
 | 
						|
 |