<?phpnamespace App\Entity;use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;use Symfony\Component\Security\Core\User\UserInterface;class Config{ private $apiKey; private $kindOfCredit; private $itemsPerPage; private $itemsPerRow; private $welcomeCredit; private $recaptchaTab = []; private $paymentInfos = []; private $mail = []; private $marchand = []; private $serviceId; private $accountId; public function __construct() { } public function getAccountId(): ?int { return $this->accountId; } public function setAccountId($accountId): self { $this->accountId = $accountId; return $this; } public function getServiceId(): ?int { return $this->serviceId; } public function setServiceId($serviceId): self { $this->serviceId = $serviceId; return $this; } public function getKindOfCredit(): ?int { return $this->kindOfCredit; } public function setKindOfCredit(int $kindOfCredit): self { $this->kindOfCredit = $kindOfCredit; return $this; } public function getItemsPerPage(): ?int { return $this->itemsPerPage; } public function setItemsPerPage(int $itemsPerPage): self { $this->itemsPerPage = $itemsPerPage; return $this; } public function getItemsPerRow(): ?int { return $this->itemsPerRow; } public function setItemsPerRow(int $itemsPerRow): self { $this->itemsPerRow = $itemsPerRow; return $this; } public function getWelcomeCredit(): ?int { return $this->welcomeCredit; } public function setWelcomeCredit(int $welcomeCredit): self { $this->welcomeCredit = $welcomeCredit; return $this; } public function getRecaptchaTab(): ?array { return $this->recaptchaTab; } public function setRecaptchaTab(array $recaptchaTab): self { $this->recaptchaTab = $recaptchaTab; return $this; } public function getPaymentInfos(): ?array { return $this->paymentInfos; } public function setPaymentInfos(array $paymentInfos): self { $this->paymentInfos = $paymentInfos; return $this; } public function getMail(): ?array { return $this->mail; } public function setMail(array $mail): self { $this->mail = $mail; return $this; } public function getMarchand(): ?array { return $this->marchand; } public function setMarchand(array $marchand): self { $this->marchand = $marchand; return $this; }}