src/Entity/JobSectorImage.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobSectorImage
  5. {
  6.     /**
  7.      * @var integer
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $name;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $alttext;
  18.     /**
  19.      * @var string
  20.      */
  21.     private $filename;
  22.     /**
  23.      * @var string
  24.      */
  25.     private $fileExtension;
  26.     /**
  27.      * @var \App\Entity\FilePath
  28.      */
  29.     private $filePath;
  30.     /**
  31.      * Get id
  32.      *
  33.      * @return integer
  34.      */
  35.     public function getId()
  36.     {
  37.         return $this->id;
  38.     }
  39.     /**
  40.      * Set name
  41.      *
  42.      * @param string $name
  43.      *
  44.      * @return JobSectorImage
  45.      */
  46.     public function setName($name)
  47.     {
  48.         $this->name $name;
  49.         return $this;
  50.     }
  51.     /**
  52.      * Get name
  53.      *
  54.      * @return string
  55.      */
  56.     public function getName()
  57.     {
  58.         return $this->name;
  59.     }
  60.     /**
  61.      * Set alttext
  62.      *
  63.      * @param string $alttext
  64.      *
  65.      * @return JobSectorImage
  66.      */
  67.     public function setAlttext($alttext)
  68.     {
  69.         $this->alttext $alttext;
  70.         return $this;
  71.     }
  72.     /**
  73.      * Get alttext
  74.      *
  75.      * @return string
  76.      */
  77.     public function getAlttext()
  78.     {
  79.         return $this->alttext;
  80.     }
  81.     /**
  82.      * Set filename
  83.      *
  84.      * @param string $filename
  85.      *
  86.      * @return JobSectorImage
  87.      */
  88.     public function setFilename($filename)
  89.     {
  90.         $this->filename $filename;
  91.         return $this;
  92.     }
  93.     /**
  94.      * Get filename
  95.      *
  96.      * @return string
  97.      */
  98.     public function getFilename()
  99.     {
  100.         return $this->filename;
  101.     }
  102.     /**
  103.      * Set fileExtension
  104.      *
  105.      * @param string $fileExtension
  106.      *
  107.      * @return JobSectorImage
  108.      */
  109.     public function setFileExtension($fileExtension)
  110.     {
  111.         $this->fileExtension $fileExtension;
  112.         return $this;
  113.     }
  114.     /**
  115.      * Get fileExtension
  116.      *
  117.      * @return string
  118.      */
  119.     public function getFileExtension()
  120.     {
  121.         return $this->fileExtension;
  122.     }
  123.     /**
  124.      * Set filePath
  125.      *
  126.      * @param \App\Entity\FilePath $filePath
  127.      *
  128.      * @return JobSectorImage
  129.      */
  130.     public function setFilePath(\App\Entity\FilePath $filePath null)
  131.     {
  132.         $this->filePath $filePath;
  133.         return $this;
  134.     }
  135.     /**
  136.      * Get filePath
  137.      *
  138.      * @return \App\Entity\FilePath
  139.      */
  140.     public function getFilePath()
  141.     {
  142.         return $this->filePath;
  143.     }
  144. }