Deprecated: Return type of Google\Model::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 256

Deprecated: Return type of Google\Model::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 261

Deprecated: Return type of Google\Model::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 268

Deprecated: Return type of Google\Model::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 278

Deprecated: Return type of Google\Collection::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 22

Deprecated: Return type of Google\Collection::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 38

Deprecated: Return type of Google\Collection::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 30

Deprecated: Return type of Google\Collection::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 43

Deprecated: Return type of Google\Collection::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 14

Deprecated: Return type of Google\Collection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 49
Symfony Profiler

src/Entity/MailingList.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MailingListRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=MailingListRepository::class)
  7.  */
  8. class MailingList
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $fullName;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $email;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $mobile;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $companyName;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $designation;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $region;
  40.     /**
  41.      * @ORM\Column(type="boolean")
  42.      */
  43.     private $isSubscribed;
  44.     /**
  45.      * @ORM\Column(type="string")
  46.      */
  47.     private $modified;
  48.     /**
  49.      * @ORM\Column(type="string")
  50.      */
  51.     private $created;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getFullName(): ?string
  57.     {
  58.         return $this->fullName;
  59.     }
  60.     public function setFullName(string $fullName): self
  61.     {
  62.         $this->fullName $fullName;
  63.         return $this;
  64.     }
  65.     public function getEmail(): ?string
  66.     {
  67.         return $this->email;
  68.     }
  69.     public function setEmail(string $email): self
  70.     {
  71.         $this->email $email;
  72.         return $this;
  73.     }
  74.     public function getMobile(): ?string
  75.     {
  76.         return $this->mobile;
  77.     }
  78.     public function setMobile(string $mobile): self
  79.     {
  80.         $this->mobile $mobile;
  81.         return $this;
  82.     }
  83.     public function getCompanyName(): ?string
  84.     {
  85.         return $this->companyName;
  86.     }
  87.     public function setCompanyName(?string $companyName): self
  88.     {
  89.         $this->companyName $companyName;
  90.         return $this;
  91.     }
  92.     public function getDesignation(): ?string
  93.     {
  94.         return $this->designation;
  95.     }
  96.     public function setDesignation(?string $designation): self
  97.     {
  98.         $this->designation $designation;
  99.         return $this;
  100.     }
  101.     public function getRegion(): ?string
  102.     {
  103.         return $this->region;
  104.     }
  105.     public function setRegion(?string $region): self
  106.     {
  107.         $this->region $region;
  108.         return $this;
  109.     }
  110.     public function getIsSubscribed(): ?bool
  111.     {
  112.         return $this->isSubscribed;
  113.     }
  114.     public function setIsSubscribed(bool $isSubscribed): self
  115.     {
  116.         $this->isSubscribed $isSubscribed;
  117.         return $this;
  118.     }
  119.     public function getModified(): ?string
  120.     {
  121.         return $this->modified;
  122.     }
  123.     public function setModified(?string $modified): self
  124.     {
  125.         $this->modified $modified;
  126.         return $this;
  127.     }
  128.     public function getCreated(): ?string
  129.     {
  130.         return $this->created;
  131.     }
  132.     public function setCreated(?string $created): self
  133.     {
  134.         $this->created $created;
  135.         return $this;
  136.     }
  137. }