vendor/score/cms/src/Entity/Multisite/Site.php line 11

Open in your IDE?
  1. <?php
  2. namespace  Score\CmsBundle\Entity\Multisite;
  3. use Score\BaseBundle\Entity\BaseEntity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity
  7.  * @ORM\Table(name="cms_site")
  8. * @ORM\HasLifecycleCallbacks()
  9.  */
  10. class Site extends BaseEntity {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\Column(type="integer")
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      */
  16.     protected $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=200)
  19.      */
  20.     protected $name;
  21.     /**
  22.      * @ORM\Column(type="text", nullable = true)
  23.      */
  24.     protected $url;
  25.     
  26.     /**
  27.      * Get the value of id
  28.      */ 
  29.     public function getId()
  30.     {
  31.         return $this->id;
  32.     }
  33.     /**
  34.      * Set the value of id
  35.      *
  36.      * @return  self
  37.      */ 
  38.     public function setId($id)
  39.     {
  40.         $this->id $id;
  41.         return $this;
  42.     }
  43.     /**
  44.      * Get the value of name
  45.      */ 
  46.     public function getName()
  47.     {
  48.         return $this->name;
  49.     }
  50.     /**
  51.      * Set the value of name
  52.      *
  53.      * @return  self
  54.      */ 
  55.     public function setName($name)
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60.     /**
  61.      * Get the value of url
  62.      */ 
  63.     public function getUrl()
  64.     {
  65.         return $this->url;
  66.     }
  67.     /**
  68.      * Set the value of url
  69.      *
  70.      * @return  self
  71.      */ 
  72.     public function setUrl($url)
  73.     {
  74.         $this->url $url;
  75.         return $this;
  76.     }
  77. }