mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-11-04 03:08:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			690 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			690 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace CL\Chill\MainBundle\Entity;
 | 
						|
 | 
						|
use Doctrine\ORM\Mapping as ORM;
 | 
						|
 | 
						|
/**
 | 
						|
 * Country
 | 
						|
 */
 | 
						|
class Country
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var integer
 | 
						|
     */
 | 
						|
    private $id;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    private $label;
 | 
						|
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get id
 | 
						|
     *
 | 
						|
     * @return integer 
 | 
						|
     */
 | 
						|
    public function getId()
 | 
						|
    {
 | 
						|
        return $this->id;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Set label
 | 
						|
     *
 | 
						|
     * @param string $label
 | 
						|
     * @return Country
 | 
						|
     */
 | 
						|
    public function setLabel($label)
 | 
						|
    {
 | 
						|
        $this->label = $label;
 | 
						|
    
 | 
						|
        return $this;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get label
 | 
						|
     *
 | 
						|
     * @return string 
 | 
						|
     */
 | 
						|
    public function getLabel()
 | 
						|
    {
 | 
						|
        return $this->label;
 | 
						|
    }
 | 
						|
}
 |