src/Entity/Application/SoftwareInfos.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Application;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="ei_software_infos")
  6.  * @ORM\Entity(repositoryClass="App\Repository\Application\SoftwareInfosRepository")
  7.  */
  8. class SoftwareInfos
  9. {
  10.     use \App\Library\Entity\baseEntity;
  11.     use \App\Library\Entity\loggableEntity;
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", nullable=true)
  20.      */
  21.     private $shortName;
  22.     /**
  23.      * @ORM\Column(type="string", nullable=true)
  24.      */
  25.     private $fullName;
  26.     /**
  27.      * @ORM\Column(type="string", nullable=true)
  28.      */
  29.     private $logo;
  30.     /**
  31.      * @ORM\Column(type="string", nullable=true)
  32.      */
  33.     private $logoWhite;
  34.     /**
  35.      * @ORM\Column(type="string", nullable=true)
  36.      */
  37.     private $tagline;
  38.     /**
  39.      * @ORM\Column(type="string", nullable=true)
  40.      */
  41.     private $address;
  42.     /**
  43.      * @ORM\Column(type="string", nullable=true)
  44.      */
  45.     private $phoneNumber;
  46.     /**
  47.      * @ORM\Column(type="string", nullable=true)
  48.      */
  49.     private $freePhoneNumber;
  50.     /**
  51.      * @ORM\Column(type="string", nullable=true)
  52.      */
  53.     private $rbq;
  54.     /**
  55.      * @ORM\Column(type="string", nullable=true)
  56.      */
  57.     private $iso;
  58.     /**
  59.      * @ORM\Column(type="string", length=7, nullable=true)
  60.      */
  61.     private $color;
  62.     /**
  63.      * @ORM\Column(type="string", length=7, nullable=true)
  64.      */
  65.     private $highlightColor;
  66.     /**
  67.      * @ORM\Column(type="string", length=7, nullable=true)
  68.      */
  69.     private $secondaryColor;
  70.     /**
  71.      * @ORM\Column(type="string", length=255, nullable=true)
  72.      */
  73.     private $fax;
  74.     /**
  75.      * @ORM\Column(type="string", length=255, nullable=true)
  76.      */
  77.     private $email;
  78.     /**
  79.      * @ORM\Column(type="string", length=255, nullable=true)
  80.      */
  81.     private $modernSoftwareUrl;
  82.     /**
  83.      * Get the value of Id
  84.      *
  85.      * @return int
  86.      */
  87.     public function getId()
  88.     {
  89.         return $this->id;
  90.     }
  91.     /**
  92.      * Set the value of Id
  93.      *
  94.      *
  95.      * @return self
  96.      */
  97.     public function setId(mixed $id)
  98.     {
  99.         $this->id $id;
  100.         return $this;
  101.     }
  102.     /**
  103.      * Get the value of Full Name
  104.      *
  105.      * @return ?string
  106.      */
  107.     public function getFullName()
  108.     {
  109.         return $this->fullName;
  110.     }
  111.     /**
  112.      * Set the value of Full Name
  113.      *
  114.      * @param string $fullName
  115.      *
  116.      * @return self
  117.      */
  118.     public function setFullName($fullName)
  119.     {
  120.         $this->fullName $fullName;
  121.         return $this;
  122.     }
  123.     /**
  124.      * Get the value of Short Name
  125.      *
  126.      * @return ?string
  127.      */
  128.     public function getShortName()
  129.     {
  130.         return $this->shortName;
  131.     }
  132.     /**
  133.      * Set the value of Short Name
  134.      *
  135.      * @param string $shortName
  136.      *
  137.      * @return self
  138.      */
  139.     public function setShortName($shortName)
  140.     {
  141.         $this->shortName $shortName;
  142.         return $this;
  143.     }
  144.     /**
  145.      * Get the value of Logo
  146.      *
  147.      * @return ?string
  148.      */
  149.     public function getLogo()
  150.     {
  151.         return $this->logo;
  152.     }
  153.     /**
  154.      * Set the value of Logo
  155.      *
  156.      *
  157.      * @return self
  158.      */
  159.     public function setLogo(mixed $logo)
  160.     {
  161.         $this->logo $logo;
  162.         return $this;
  163.     }
  164.     /**
  165.      * Get the value of Logo White
  166.      *
  167.      * @return ?string
  168.      */
  169.     public function getLogoWhite()
  170.     {
  171.         return $this->logoWhite;
  172.     }
  173.     /**
  174.      * Set the value of Logo White
  175.      *
  176.      * @param string $logoWhite
  177.      *
  178.      * @return self
  179.      */
  180.     public function setLogoWhite($logoWhite)
  181.     {
  182.         $this->logoWhite $logoWhite;
  183.         return $this;
  184.     }
  185.     /**
  186.      * Get the value of Tagline
  187.      *
  188.      * @return ?string
  189.      */
  190.     public function getTagline()
  191.     {
  192.         return $this->tagline;
  193.     }
  194.     /**
  195.      * Set the value of Tagline
  196.      *
  197.      *
  198.      * @return self
  199.      */
  200.     public function setTagline(mixed $tagline)
  201.     {
  202.         $this->tagline $tagline;
  203.         return $this;
  204.     }
  205.     /**
  206.      * Get the value of Address
  207.      *
  208.      * @return ?string
  209.      */
  210.     public function getAddress()
  211.     {
  212.         return $this->address;
  213.     }
  214.     /**
  215.      * Set the value of Address
  216.      *
  217.      *
  218.      * @return self
  219.      */
  220.     public function setAddress(mixed $address)
  221.     {
  222.         $this->address $address;
  223.         return $this;
  224.     }
  225.     /**
  226.      * Get the value of Phone Number
  227.      *
  228.      * @return ?string
  229.      */
  230.     public function getPhoneNumber()
  231.     {
  232.         return $this->phoneNumber;
  233.     }
  234.     /**
  235.      * Set the value of PhoneNumber
  236.      *
  237.      *
  238.      * @return self
  239.      */
  240.     public function setPhoneNumber(mixed $phoneNumber)
  241.     {
  242.         $this->phoneNumber $phoneNumber;
  243.         return $this;
  244.     }
  245.     /**
  246.      * Get the value of Free Phone Number
  247.      *
  248.      * @return ?string
  249.      */
  250.     public function getFreePhoneNumber()
  251.     {
  252.         return $this->freePhoneNumber;
  253.     }
  254.     /**
  255.      * Set the value of PhoneNumber
  256.      *
  257.      *
  258.      * @return self
  259.      */
  260.     public function setFreePhoneNumber(mixed $freePhoneNumber)
  261.     {
  262.         $this->freePhoneNumber $freePhoneNumber;
  263.         return $this;
  264.     }
  265.     /**
  266.      * Get the value of R.B.Q.
  267.      *
  268.      * @return ?string
  269.      */
  270.     public function getRbq()
  271.     {
  272.         return $this->rbq;
  273.     }
  274.     /**
  275.      * Set the value of R.B.Q.
  276.      *
  277.      *
  278.      * @return self
  279.      */
  280.     public function setRbq(mixed $rbq)
  281.     {
  282.         $this->rbq $rbq;
  283.         return $this;
  284.     }
  285.     /**
  286.      * Get the value of ISO
  287.      *
  288.      * @return ?string
  289.      */
  290.     public function getIso()
  291.     {
  292.         return $this->iso;
  293.     }
  294.     /**
  295.      * Set the value of ISO
  296.      *
  297.      *
  298.      * @return self
  299.      */
  300.     public function setIso(mixed $iso)
  301.     {
  302.         $this->iso $iso;
  303.         return $this;
  304.     }
  305.     /**
  306.      * Get the value of Color
  307.      *
  308.      * @return ?string
  309.      */
  310.     public function getColor()
  311.     {
  312.         return $this->color;
  313.     }
  314.     /**
  315.      * Set the value of Color
  316.      *
  317.      *
  318.      * @return self
  319.      */
  320.     public function setColor(mixed $color)
  321.     {
  322.         $this->color $color;
  323.         return $this;
  324.     }
  325.     /**
  326.      * Get the value of Highlight Color
  327.      *
  328.      * @return ?string
  329.      */
  330.     public function getHighlightColor()
  331.     {
  332.         return $this->highlightColor;
  333.     }
  334.     /**
  335.      * Set the value of Highlight Color
  336.      *
  337.      *
  338.      * @return self
  339.      */
  340.     public function setHighlightColor(mixed $highlightColor)
  341.     {
  342.         $this->highlightColor $highlightColor;
  343.         return $this;
  344.     }
  345.     /**
  346.      * Get the value of Secondary Color
  347.      *
  348.      * @return ?string
  349.      */
  350.     public function getSecondaryColor()
  351.     {
  352.         return $this->secondaryColor;
  353.     }
  354.     /**
  355.      * Set the value of Secondary Color
  356.      *
  357.      *
  358.      * @return self
  359.      */
  360.     public function setSecondaryColor(mixed $secondaryColor)
  361.     {
  362.         $this->secondaryColor $secondaryColor;
  363.         return $this;
  364.     }
  365.     public function getFax(): ?string
  366.     {
  367.         return $this->fax;
  368.     }
  369.     public function setFax(?string $fax): self
  370.     {
  371.         $this->fax $fax;
  372.         return $this;
  373.     }
  374.     public function getEmail(): ?string
  375.     {
  376.         return $this->email;
  377.     }
  378.     public function setEmail(?string $email): self
  379.     {
  380.         $this->email $email;
  381.         return $this;
  382.     }
  383.     public function getModernSoftwareUrl(): ?string
  384.     {
  385.         return $this->modernSoftwareUrl;
  386.     }
  387.     public function setModernSoftwareUrl(?string $modernSoftwareUrl): self
  388.     {
  389.         $this->modernSoftwareUrl $modernSoftwareUrl;
  390.         return $this;
  391.     }
  392. }