src/Entity/Config.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  4. use Symfony\Component\Security\Core\User\UserInterface;
  5. class Config
  6. {
  7.     private $apiKey;
  8.     private $kindOfCredit;
  9.     private $itemsPerPage;
  10.     private $itemsPerRow;
  11.     private $welcomeCredit;
  12.     private $recaptchaTab = [];
  13.     private $paymentInfos = [];
  14.     private $mail = [];
  15.     private $marchand = [];
  16.     private $serviceId;
  17.     private $accountId;
  18.     public function __construct()
  19.     {
  20.     }
  21.     public function getAccountId(): ?int
  22.     {
  23.         return $this->accountId;
  24.     }
  25.     public function setAccountId($accountId): self
  26.     {
  27.         $this->accountId $accountId;
  28.         return $this;
  29.     }
  30.     public function getServiceId(): ?int
  31.     {
  32.         return $this->serviceId;
  33.     }
  34.     public function setServiceId($serviceId): self
  35.     {
  36.         $this->serviceId $serviceId;
  37.         return $this;
  38.     }
  39.     public function getKindOfCredit(): ?int
  40.     {
  41.         return $this->kindOfCredit;
  42.     }
  43.     public function setKindOfCredit(int $kindOfCredit): self
  44.     {
  45.         $this->kindOfCredit $kindOfCredit;
  46.         return $this;
  47.     }
  48.     public function getItemsPerPage(): ?int
  49.     {
  50.         return $this->itemsPerPage;
  51.     }
  52.     public function setItemsPerPage(int $itemsPerPage): self
  53.     {
  54.         $this->itemsPerPage $itemsPerPage;
  55.         return $this;
  56.     }
  57.     public function getItemsPerRow(): ?int
  58.     {
  59.         return $this->itemsPerRow;
  60.     }
  61.     public function setItemsPerRow(int $itemsPerRow): self
  62.     {
  63.         $this->itemsPerRow $itemsPerRow;
  64.         return $this;
  65.     }
  66.     public function getWelcomeCredit(): ?int
  67.     {
  68.         return $this->welcomeCredit;
  69.     }
  70.     public function setWelcomeCredit(int $welcomeCredit): self
  71.     {
  72.         $this->welcomeCredit $welcomeCredit;
  73.         return $this;
  74.     }
  75.     public function getRecaptchaTab(): ?array
  76.     {
  77.         return $this->recaptchaTab;
  78.     }
  79.     public function setRecaptchaTab(array $recaptchaTab): self
  80.     {
  81.         $this->recaptchaTab $recaptchaTab;
  82.         return $this;
  83.     }
  84.     public function getPaymentInfos(): ?array
  85.     {
  86.         return $this->paymentInfos;
  87.     }
  88.     public function setPaymentInfos(array $paymentInfos): self
  89.     {
  90.         $this->paymentInfos $paymentInfos;
  91.         return $this;
  92.     }
  93.     public function getMail(): ?array
  94.     {
  95.         return $this->mail;
  96.     }
  97.     public function setMail(array $mail): self
  98.     {
  99.         $this->mail $mail;
  100.         return $this;
  101.     }
  102.     public function getMarchand(): ?array
  103.     {
  104.         return $this->marchand;
  105.     }
  106.     public function setMarchand(array $marchand): self
  107.     {
  108.         $this->marchand $marchand;
  109.         return $this;
  110.     }
  111. }