src/Entity/CompanyCertificate.php line 7

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