src/Entity/CommunicationType.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class CommunicationType {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $name;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $shortName;
  17.     /**
  18.      * @var bool
  19.      */
  20.     private $visible;
  21.     /**
  22.      * Get id
  23.      *
  24.      * @return integer
  25.      */
  26.     public function getId() {
  27.         return $this->id;
  28.     }
  29.     /**
  30.      * Set name
  31.      *
  32.      * @param string $name
  33.      *
  34.      * @return CommunicationType
  35.      */
  36.     public function setName($name) {
  37.         $this->name $name;
  38.         return $this;
  39.     }
  40.     /**
  41.      * Get name
  42.      *
  43.      * @return string
  44.      */
  45.     public function getName() {
  46.         return $this->name;
  47.     }
  48.     /**
  49.      * Set shortName.
  50.      *
  51.      * @param string $shortName
  52.      *
  53.      * @return CommunicationType
  54.      */
  55.     public function setShortName($shortName) {
  56.         $this->shortName $shortName;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get shortName.
  61.      *
  62.      * @return string
  63.      */
  64.     public function getShortName() {
  65.         return $this->shortName;
  66.     }
  67.     /**
  68.      * Set visible.
  69.      *
  70.      * @param bool $visible
  71.      *
  72.      * @return CommunicationType
  73.      */
  74.     public function setVisible($visible)
  75.     {
  76.         $this->visible $visible;
  77.         return $this;
  78.     }
  79.     /**
  80.      * Get visible.
  81.      *
  82.      * @return bool
  83.      */
  84.     public function getVisible()
  85.     {
  86.         return $this->visible;
  87.     }
  88. }