src/Products/AdaBundle/Entity/AdaSettingsEmbeddable.php line 13

Open in your IDE?
  1. <?php
  2. namespace Products\AdaBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Class AdaSettingsEmbeddable
  6.  * @package Products\AdaBundle\Entity
  7.  *
  8.  * @ORM\Embeddable
  9.  */
  10. class AdaSettingsEmbeddable
  11. {
  12.     /**
  13.      * @var string
  14.      *
  15.      * @ORM\Column(
  16.      *     type = "string",
  17.      *     nullable = true
  18.      * )
  19.      */
  20.     protected $reportsFolder;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(
  25.      *     type = "string",
  26.      *     nullable = true
  27.      * )
  28.      */
  29.     protected $reportsPrimary;
  30.     /**
  31.      * @var string
  32.      *
  33.      * @ORM\Column(
  34.      *     type = "string",
  35.      *     nullable = true
  36.      * )
  37.      */
  38.     protected $reportsDocuments;
  39.     /**
  40.      * @return string
  41.      */
  42.     public function getReportsFolder()
  43.     {
  44.         return $this->reportsFolder;
  45.     }
  46.     /**
  47.      * @param string $value
  48.      * @return $this
  49.      */
  50.     public function setReportsFolder($value)
  51.     {
  52.         $this->reportsFolder $value;
  53.         return $this;
  54.     }
  55.     /**
  56.      * @return string
  57.      */
  58.     public function getReportsPrimary()
  59.     {
  60.         return $this->reportsPrimary;
  61.     }
  62.     /**
  63.      * @param string $value
  64.      * @return $this
  65.      */
  66.     public function setReportsPrimary($value)
  67.     {
  68.         $this->reportsPrimary $value;
  69.         return $this;
  70.     }
  71.     /**
  72.      * @return string
  73.      */
  74.     public function getReportsDocuments()
  75.     {
  76.         return $this->reportsDocuments;
  77.     }
  78.     /**
  79.      * @param string $value
  80.      * @return $this
  81.      */
  82.     public function setReportsDocuments($value)
  83.     {
  84.         $this->reportsDocuments $value;
  85.         return $this;
  86.     }
  87. }