src/Entity/FilePath.php line 7

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