src/Entity/DeliveryAddress.php line 11
<?phpnamespace App\Entity;use App\Repository\DeliveryAddressRepository;use Doctrine\Common\Collections\Collection;use Doctrine\ORM\Mapping as ORM;use phpDocumentor\Reflection\Types\Boolean;#[ORM\Entity(repositoryClass: DeliveryAddressRepository::class)]class DeliveryAddress{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne(targetEntity: User::class, inversedBy: 'deliveryAddress')]private $user;#[ORM\OneToMany(mappedBy: 'deliveryAddress', targetEntity: CartFinished::class)]private ?Collection $cartFinishedDelivery;#[ORM\OneToMany(mappedBy: 'deliveryBillingAddress', targetEntity: CartFinished::class)]private ?Collection $cartFinishedBilling;#[ORM\Column(name: 'companyName', type: 'string', nullable: true)]private ?string $companyName;#[ORM\Column(name: 'name', type: 'string', nullable: true)]private ?string $name;#[ORM\Column(name: 'firstName', type: 'string', nullable: true)]private ?string $firstName;#[ORM\Column(name: 'address', type: 'string', nullable: true)]private ?string $address;#[ORM\Column(name: 'postal', type: 'string', nullable: true)]private ?string $postal;#[ORM\Column(name: 'town', type: 'string', nullable: true)]private ?string $town;#[ORM\Column(name: 'country', type: 'string', nullable: true)]private ?string $country;#[ORM\Column(name: 'phoneNumber', type: 'string', nullable: true)]private ?string $phoneNumber;#[ORM\Column(name: 'monday', type: 'boolean', nullable: true)]private ?bool $monday;#[ORM\Column(name: 'morningMonday', type: 'datetime', nullable: true)]private ?\DateTime $morningMonday;#[ORM\Column(name: 'morningMondayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningMondayEnd;#[ORM\Column(name: 'afternoonMonday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonMonday;#[ORM\Column(name: 'afternoonMondayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonMondayEnd;#[ORM\Column(name: 'tuesday', type: 'boolean', nullable: true)]private ?bool $tuesday;#[ORM\Column(name: 'morningTuesday', type: 'datetime', nullable: true)]private ?\DateTime $morningTuesday;#[ORM\Column(name: 'morningTuesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningTuesdayEnd;#[ORM\Column(name: 'afternoonTuesday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonTuesday;#[ORM\Column(name: 'afternoonTuesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonTuesdayEnd;#[ORM\Column(name: 'wednesday', type: 'boolean', nullable: true)]private ?bool $wednesday;#[ORM\Column(name: 'morningWednesday', type: 'datetime', nullable: true)]private ?\DateTime $morningWednesday;#[ORM\Column(name: 'morningWednesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningWednesdayEnd;#[ORM\Column(name: 'afternoonWednesday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonWednesday;#[ORM\Column(name: 'afternoonWednesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonWednesdayEnd;#[ORM\Column(name: 'thursday', type: 'boolean', nullable: true)]private ?bool $thursday;#[ORM\Column(name: 'morningThursday', type: 'datetime', nullable: true)]private ?\DateTime $morningThursday;#[ORM\Column(name: 'morningThursdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningThursdayEnd;#[ORM\Column(name: 'afternoonThursday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonThursday;#[ORM\Column(name: 'afternoonThursdayeEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonThursdayEnd;#[ORM\Column(name: 'friday', type: 'boolean', nullable: true)]private ?bool $friday;#[ORM\Column(name: 'morningFriday', type: 'datetime', nullable: true)]private ?\DateTime $morningFriday;#[ORM\Column(name: 'morningFridayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningFridayEnd;#[ORM\Column(name: 'afternoonFriday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonFriday;#[ORM\Column(name: 'afternoonFridayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonFridayEnd;#[ORM\Column(name: 'saturday', type: 'boolean', nullable: true)]private ?bool $saturday;#[ORM\Column(name: 'morningSaturday', type: 'datetime', nullable: true)]private ?\DateTime $morningSaturday;#[ORM\Column(name: 'morningSaturdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningSaturdayEnd;#[ORM\Column(name: 'afternoonSaturday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonSaturday;#[ORM\Column(name: 'afternoonSaturdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonSaturdayEnd;#[ORM\Column(name: 'sunday', type: 'boolean', nullable: true)]private ?bool $sunday;#[ORM\Column(name: 'morningSunday', type: 'datetime', nullable: true)]private ?\DateTime $morningSunday;#[ORM\Column(name: 'morningSundayEnd', type: 'datetime', nullable: true)]private ?\DateTime $morningSundayEnd;#[ORM\Column(name: 'afternoonSunday', type: 'datetime', nullable: true)]private ?\DateTime $afternoonSunday;#[ORM\Column(name: 'afternoonSundayEnd', type: 'datetime', nullable: true)]private ?\DateTime $afternoonSundayEnd;#[ORM\Column(name: 'hourlyMonday', type: 'boolean', nullable: true)]private ?bool $hourlyMonday;#[ORM\Column(name: 'hourlyMorningMonday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningMonday;#[ORM\Column(name: 'hourlyMorningMondayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningMondayEnd;#[ORM\Column(name: 'hourlyTuesday', type: 'boolean', nullable: true)]private ?bool $hourlyTuesday;#[ORM\Column(name: 'hourlyMorningTuesday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningTuesday;#[ORM\Column(name: 'hourlyMorningTuesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningTuesdayEnd;#[ORM\Column(name: 'hourlyWednesday', type: 'boolean', nullable: true)]private ?bool $hourlyWednesday;#[ORM\Column(name: 'hourlyMorningWednesday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningWednesday;#[ORM\Column(name: 'hourlyMorningWednesdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningWednesdayEnd;#[ORM\Column(name: 'hourlyThursday', type: 'boolean', nullable: true)]private ?bool $hourlyThursday;#[ORM\Column(name: 'hourlyMorningThursday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningThursday;#[ORM\Column(name: 'hourlyMorningThursdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningThursdayEnd;#[ORM\Column(name: 'hourlyFriday', type: 'boolean', nullable: true)]private ?bool $hourlyFriday;#[ORM\Column(name: 'hourlyMorningFriday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningFriday;#[ORM\Column(name: 'hourlyMorningFridayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningFridayEnd;#[ORM\Column(name: 'hourlySaturday', type: 'boolean', nullable: true)]private ?bool $hourlySaturday;#[ORM\Column(name: 'hourlyMorningSaturday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningSaturday;#[ORM\Column(name: 'hourlyMorningSaturdayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningSaturdayEnd;#[ORM\Column(name: 'hourlySunday', type: 'boolean', nullable: true)]private ?bool $hourlySunday;#[ORM\Column(name: 'hourlyMorningSunday', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningSunday;#[ORM\Column(name: 'hourlyMorningSundayEnd', type: 'datetime', nullable: true)]private ?\DateTime $hourlyMorningSundayEnd;public function __toString(){return $this->firstName . ' ' . $this->name . ' ' . $this->address . ' ' . $this->postal . ' ' . $this->town;}/*** @return string|null*/public function getCompanyName(): ?string{return $this->companyName;}/*** @param string|null $companyName*/public function setCompanyName(?string $companyName): void{$this->companyName = $companyName;}/*** @return bool|null*/public function getHourlyMonday(): ?bool{return $this->hourlyMonday;}/*** @param bool|null $hourlyMonday*/public function setHourlyMonday(?bool $hourlyMonday): void{$this->hourlyMonday = $hourlyMonday;}/*** @return \DateTime|null*/public function getHourlyMorningMonday(): ?\DateTime{return $this->hourlyMorningMonday;}/*** @param \DateTime|null $hourlyMorningMonday*/public function setHourlyMorningMonday(?\DateTime $hourlyMorningMonday): void{$this->hourlyMorningMonday = $hourlyMorningMonday;}/*** @return \DateTime|null*/public function getHourlyMorningMondayEnd(): ?\DateTime{return $this->hourlyMorningMondayEnd;}/*** @param \DateTime|null $hourlyMorningMondayEnd*/public function setHourlyMorningMondayEnd(?\DateTime $hourlyMorningMondayEnd): void{$this->hourlyMorningMondayEnd = $hourlyMorningMondayEnd;}/*** @return bool|null*/public function getHourlyTuesday(): ?bool{return $this->hourlyTuesday;}/*** @param bool|null $hourlyTuesday*/public function setHourlyTuesday(?bool $hourlyTuesday): void{$this->hourlyTuesday = $hourlyTuesday;}/*** @return \DateTime|null*/public function getHourlyMorningTuesday(): ?\DateTime{return $this->hourlyMorningTuesday;}/*** @param \DateTime|null $hourlyMorningTuesday*/public function setHourlyMorningTuesday(?\DateTime $hourlyMorningTuesday): void{$this->hourlyMorningTuesday = $hourlyMorningTuesday;}/*** @return \DateTime|null*/public function getHourlyMorningTuesdayEnd(): ?\DateTime{return $this->hourlyMorningTuesdayEnd;}/*** @param \DateTime|null $hourlyMorningTuesdayEnd*/public function setHourlyMorningTuesdayEnd(?\DateTime $hourlyMorningTuesdayEnd): void{$this->hourlyMorningTuesdayEnd = $hourlyMorningTuesdayEnd;}/*** @return bool|null*/public function getHourlyWednesday(): ?bool{return $this->hourlyWednesday;}/*** @param bool|null $hourlyWednesday*/public function setHourlyWednesday(?bool $hourlyWednesday): void{$this->hourlyWednesday = $hourlyWednesday;}/*** @return \DateTime|null*/public function getHourlyMorningWednesday(): ?\DateTime{return $this->hourlyMorningWednesday;}/*** @param \DateTime|null $hourlyMorningWednesday*/public function setHourlyMorningWednesday(?\DateTime $hourlyMorningWednesday): void{$this->hourlyMorningWednesday = $hourlyMorningWednesday;}/*** @return \DateTime|null*/public function getHourlyMorningWednesdayEnd(): ?\DateTime{return $this->hourlyMorningWednesdayEnd;}/*** @param \DateTime|null $hourlyMorningWednesdayEnd*/public function setHourlyMorningWednesdayEnd(?\DateTime $hourlyMorningWednesdayEnd): void{$this->hourlyMorningWednesdayEnd = $hourlyMorningWednesdayEnd;}/*** @return bool|null*/public function getHourlyThursday(): ?bool{return $this->hourlyThursday;}/*** @param bool|null $hourlyThursday*/public function setHourlyThursday(?bool $hourlyThursday): void{$this->hourlyThursday = $hourlyThursday;}/*** @return \DateTime|null*/public function getHourlyMorningThursday(): ?\DateTime{return $this->hourlyMorningThursday;}/*** @param \DateTime|null $hourlyMorningThursday*/public function setHourlyMorningThursday(?\DateTime $hourlyMorningThursday): void{$this->hourlyMorningThursday = $hourlyMorningThursday;}/*** @return \DateTime|null*/public function getHourlyMorningThursdayEnd(): ?\DateTime{return $this->hourlyMorningThursdayEnd;}/*** @param \DateTime|null $hourlyMorningThursdayEnd*/public function setHourlyMorningThursdayEnd(?\DateTime $hourlyMorningThursdayEnd): void{$this->hourlyMorningThursdayEnd = $hourlyMorningThursdayEnd;}/*** @return bool|null*/public function getHourlyFriday(): ?bool{return $this->hourlyFriday;}/*** @param bool|null $hourlyFriday*/public function setHourlyFriday(?bool $hourlyFriday): void{$this->hourlyFriday = $hourlyFriday;}/*** @return \DateTime|null*/public function getHourlyMorningFriday(): ?\DateTime{return $this->hourlyMorningFriday;}/*** @param \DateTime|null $hourlyMorningFriday*/public function setHourlyMorningFriday(?\DateTime $hourlyMorningFriday): void{$this->hourlyMorningFriday = $hourlyMorningFriday;}/*** @return \DateTime|null*/public function getHourlyMorningFridayEnd(): ?\DateTime{return $this->hourlyMorningFridayEnd;}/*** @param \DateTime|null $hourlyMorningFridayEnd*/public function setHourlyMorningFridayEnd(?\DateTime $hourlyMorningFridayEnd): void{$this->hourlyMorningFridayEnd = $hourlyMorningFridayEnd;}/*** @return bool|null*/public function getHourlySaturday(): ?bool{return $this->hourlySaturday;}/*** @param bool|null $hourlySaturday*/public function setHourlySaturday(?bool $hourlySaturday): void{$this->hourlySaturday = $hourlySaturday;}/*** @return \DateTime|null*/public function getHourlyMorningSaturday(): ?\DateTime{return $this->hourlyMorningSaturday;}/*** @param \DateTime|null $hourlyMorningSaturday*/public function setHourlyMorningSaturday(?\DateTime $hourlyMorningSaturday): void{$this->hourlyMorningSaturday = $hourlyMorningSaturday;}/*** @return \DateTime|null*/public function getHourlyMorningSaturdayEnd(): ?\DateTime{return $this->hourlyMorningSaturdayEnd;}/*** @param \DateTime|null $hourlyMorningSaturdayEnd*/public function setHourlyMorningSaturdayEnd(?\DateTime $hourlyMorningSaturdayEnd): void{$this->hourlyMorningSaturdayEnd = $hourlyMorningSaturdayEnd;}/*** @return bool|null*/public function getHourlySunday(): ?bool{return $this->hourlySunday;}/*** @param bool|null $hourlySunday*/public function setHourlySunday(?bool $hourlySunday): void{$this->hourlySunday = $hourlySunday;}/*** @return \DateTime|null*/public function getHourlyMorningSunday(): ?\DateTime{return $this->hourlyMorningSunday;}/*** @param \DateTime|null $hourlyMorningSunday*/public function setHourlyMorningSunday(?\DateTime $hourlyMorningSunday): void{$this->hourlyMorningSunday = $hourlyMorningSunday;}/*** @return \DateTime|null*/public function getHourlyMorningSundayEnd(): ?\DateTime{return $this->hourlyMorningSundayEnd;}/*** @param \DateTime|null $hourlyMorningSundayEnd*/public function setHourlyMorningSundayEnd(?\DateTime $hourlyMorningSundayEnd): void{$this->hourlyMorningSundayEnd = $hourlyMorningSundayEnd;}/*** @return Collection|null*/public function getCartFinishedDelivery(): ?Collection{return $this->cartFinishedDelivery;}/*** @param Collection|null $cartFinishedDelivery*/public function setCartFinishedDelivery(?Collection $cartFinishedDelivery): void{$this->cartFinishedDelivery = $cartFinishedDelivery;}/*** @return Collection|null*/public function getCartFinishedBilling(): ?Collection{return $this->cartFinishedBilling;}/*** @param Collection|null $cartFinishedBilling*/public function setCartFinishedBilling(?Collection $cartFinishedBilling): void{$this->cartFinishedBilling = $cartFinishedBilling;}/*** @return \DateTime|null*/public function getMorningMondayEnd(): ?\DateTime{return $this->morningMondayEnd;}/*** @param \DateTime|null $morningMondayEnd*/public function setMorningMondayEnd(?\DateTime $morningMondayEnd): void{$this->morningMondayEnd = $morningMondayEnd;}/*** @return \DateTime|null*/public function getAfternoonMondayEnd(): ?\DateTime{return $this->afternoonMondayEnd;}/*** @param \DateTime|null $afternoonMondayEnd*/public function setAfternoonMondayEnd(?\DateTime $afternoonMondayEnd): void{$this->afternoonMondayEnd = $afternoonMondayEnd;}/*** @return \DateTime|null*/public function getMorningTuesdayEnd(): ?\DateTime{return $this->morningTuesdayEnd;}/*** @param \DateTime|null $morningTuesdayEnd*/public function setMorningTuesdayEnd(?\DateTime $morningTuesdayEnd): void{$this->morningTuesdayEnd = $morningTuesdayEnd;}/*** @return \DateTime|null*/public function getAfternoonTuesdayEnd(): ?\DateTime{return $this->afternoonTuesdayEnd;}/*** @param \DateTime|null $afternoonTuesdayEnd*/public function setAfternoonTuesdayEnd(?\DateTime $afternoonTuesdayEnd): void{$this->afternoonTuesdayEnd = $afternoonTuesdayEnd;}/*** @return \DateTime|null*/public function getMorningWednesdayEnd(): ?\DateTime{return $this->morningWednesdayEnd;}/*** @param \DateTime|null $morningWednesdayEnd*/public function setMorningWednesdayEnd(?\DateTime $morningWednesdayEnd): void{$this->morningWednesdayEnd = $morningWednesdayEnd;}/*** @return \DateTime|null*/public function getAfternoonWednesdayEnd(): ?\DateTime{return $this->afternoonWednesdayEnd;}/*** @param \DateTime|null $afternoonWednesdayEnd*/public function setAfternoonWednesdayEnd(?\DateTime $afternoonWednesdayEnd): void{$this->afternoonWednesdayEnd = $afternoonWednesdayEnd;}/*** @return \DateTime|null*/public function getMorningThursdayEnd(): ?\DateTime{return $this->morningThursdayEnd;}/*** @param \DateTime|null $morningThursdayEnd*/public function setMorningThursdayEnd(?\DateTime $morningThursdayEnd): void{$this->morningThursdayEnd = $morningThursdayEnd;}/*** @return \DateTime|null*/public function getAfternoonThursdayEnd(): ?\DateTime{return $this->afternoonThursdayEnd;}/*** @param \DateTime|null $afternoonThursdayEnd*/public function setAfternoonThursdayEnd(?\DateTime $afternoonThursdayEnd): void{$this->afternoonThursdayEnd = $afternoonThursdayEnd;}/*** @return \DateTime|null*/public function getMorningFridayEnd(): ?\DateTime{return $this->morningFridayEnd;}/*** @param \DateTime|null $morningFridayEnd*/public function setMorningFridayEnd(?\DateTime $morningFridayEnd): void{$this->morningFridayEnd = $morningFridayEnd;}/*** @return \DateTime|null*/public function getAfternoonFridayEnd(): ?\DateTime{return $this->afternoonFridayEnd;}/*** @param \DateTime|null $afternoonFridayEnd*/public function setAfternoonFridayEnd(?\DateTime $afternoonFridayEnd): void{$this->afternoonFridayEnd = $afternoonFridayEnd;}/*** @return \DateTime|null*/public function getMorningSaturdayEnd(): ?\DateTime{return $this->morningSaturdayEnd;}/*** @param \DateTime|null $morningSaturdayEnd*/public function setMorningSaturdayEnd(?\DateTime $morningSaturdayEnd): void{$this->morningSaturdayEnd = $morningSaturdayEnd;}/*** @return \DateTime|null*/public function getAfternoonSaturdayEnd(): ?\DateTime{return $this->afternoonSaturdayEnd;}/*** @param \DateTime|null $afternoonSaturdayEnd*/public function setAfternoonSaturdayEnd(?\DateTime $afternoonSaturdayEnd): void{$this->afternoonSaturdayEnd = $afternoonSaturdayEnd;}/*** @return \DateTime|null*/public function getMorningSundayEnd(): ?\DateTime{return $this->morningSundayEnd;}/*** @param \DateTime|null $morningSundayEnd*/public function setMorningSundayEnd(?\DateTime $morningSundayEnd): void{$this->morningSundayEnd = $morningSundayEnd;}/*** @return \DateTime|null*/public function getAfternoonSundayEnd(): ?\DateTime{return $this->afternoonSundayEnd;}/*** @param \DateTime|null $afternoonSundayEnd*/public function setAfternoonSundayEnd(?\DateTime $afternoonSundayEnd): void{$this->afternoonSundayEnd = $afternoonSundayEnd;}/*** @return \DateTime|null*/public function getMorningMonday(): ?\DateTime{return $this->morningMonday;}/*** @param \DateTime|null $morningMonday*/public function setMorningMonday(?\DateTime $morningMonday): void{$this->morningMonday = $morningMonday;}/*** @return \DateTime|null*/public function getAfternoonMonday(): ?\DateTime{return $this->afternoonMonday;}/*** @param \DateTime|null $afternoonMonday*/public function setAfternoonMonday(?\DateTime $afternoonMonday): void{$this->afternoonMonday = $afternoonMonday;}/*** @return \DateTime|null*/public function getMorningTuesday(): ?\DateTime{return $this->morningTuesday;}/*** @param \DateTime|null $morningTuesday*/public function setMorningTuesday(?\DateTime $morningTuesday): void{$this->morningTuesday = $morningTuesday;}/*** @return \DateTime|null*/public function getAfternoonTuesday(): ?\DateTime{return $this->afternoonTuesday;}/*** @param \DateTime|null $afternoonTuesday*/public function setAfternoonTuesday(?\DateTime $afternoonTuesday): void{$this->afternoonTuesday = $afternoonTuesday;}/*** @return \DateTime|null*/public function getMorningWednesday(): ?\DateTime{return $this->morningWednesday;}/*** @param \DateTime|null $morningWednesday*/public function setMorningWednesday(?\DateTime $morningWednesday): void{$this->morningWednesday = $morningWednesday;}/*** @return \DateTime|null*/public function getAfternoonWednesday(): ?\DateTime{return $this->afternoonWednesday;}/*** @param \DateTime|null $afternoonWednesday*/public function setAfternoonWednesday(?\DateTime $afternoonWednesday): void{$this->afternoonWednesday = $afternoonWednesday;}/*** @return \DateTime|null*/public function getMorningThursday(): ?\DateTime{return $this->morningThursday;}/*** @param \DateTime|null $morningThursday*/public function setMorningThursday(?\DateTime $morningThursday): void{$this->morningThursday = $morningThursday;}/*** @return \DateTime|null*/public function getAfternoonThursday(): ?\DateTime{return $this->afternoonThursday;}/*** @param \DateTime|null $afternoonThursday*/public function setAfternoonThursday(?\DateTime $afternoonThursday): void{$this->afternoonThursday = $afternoonThursday;}/*** @return \DateTime|null*/public function getMorningFriday(): ?\DateTime{return $this->morningFriday;}/*** @param \DateTime|null $morningFriday*/public function setMorningFriday(?\DateTime $morningFriday): void{$this->morningFriday = $morningFriday;}/*** @return \DateTime|null*/public function getAfternoonFriday(): ?\DateTime{return $this->afternoonFriday;}/*** @param \DateTime|null $afternoonFriday*/public function setAfternoonFriday(?\DateTime $afternoonFriday): void{$this->afternoonFriday = $afternoonFriday;}/*** @return \DateTime|null*/public function getMorningSaturday(): ?\DateTime{return $this->morningSaturday;}/*** @param \DateTime|null $morningSaturday*/public function setMorningSaturday(?\DateTime $morningSaturday): void{$this->morningSaturday = $morningSaturday;}/*** @return \DateTime|null*/public function getAfternoonSaturday(): ?\DateTime{return $this->afternoonSaturday;}/*** @param \DateTime|null $afternoonSaturday*/public function setAfternoonSaturday(?\DateTime $afternoonSaturday): void{$this->afternoonSaturday = $afternoonSaturday;}/*** @return \DateTime|null*/public function getMorningSunday(): ?\DateTime{return $this->morningSunday;}/*** @param \DateTime|null $morningSunday*/public function setMorningSunday(?\DateTime $morningSunday): void{$this->morningSunday = $morningSunday;}/*** @return \DateTime|null*/public function getAfternoonSunday(): ?\DateTime{return $this->afternoonSunday;}/*** @param \DateTime|null $afternoonSunday*/public function setAfternoonSunday(?\DateTime $afternoonSunday): void{$this->afternoonSunday = $afternoonSunday;}/*** @return bool|null*/public function getMonday(): ?bool{return $this->monday;}/*** @param bool|null $monday*/public function setMonday(?bool $monday): void{$this->monday = $monday;}/*** @return bool|null*/public function getTuesday(): ?bool{return $this->tuesday;}/*** @param bool|null $tuesday*/public function setTuesday(?bool $tuesday): void{$this->tuesday = $tuesday;}/*** @return bool|null*/public function getWednesday(): ?bool{return $this->wednesday;}/*** @param bool|null $wednesday*/public function setWednesday(?bool $wednesday): void{$this->wednesday = $wednesday;}/*** @return bool|null*/public function getThursday(): ?bool{return $this->thursday;}/*** @param bool|null $thursday*/public function setThursday(?bool $thursday): void{$this->thursday = $thursday;}/*** @return bool|null*/public function getFriday(): ?bool{return $this->friday;}/*** @param bool|null $friday*/public function setFriday(?bool $friday): void{$this->friday = $friday;}/*** @return bool|null*/public function getSaturday(): ?bool{return $this->saturday;}/*** @param bool|null $saturday*/public function setSaturday(?bool $saturday): void{$this->saturday = $saturday;}/*** @return bool|null*/public function getSunday(): ?bool{return $this->sunday;}/*** @param bool|null $sunday*/public function setSunday(?bool $sunday): void{$this->sunday = $sunday;}/*** @return string|null*/public function getTown(): ?string{return $this->town;}/*** @param string|null $town*/public function setTown(?string $town): void{$this->town = $town;}/*** @return string|null*/public function getPhoneNumber(): ?string{return $this->phoneNumber;}/*** @param string|null $phoneNumber*/public function setPhoneNumber(?string $phoneNumber): void{$this->phoneNumber = $phoneNumber;}/*** @return string|null*/public function getName(): ?string{return $this->name;}/*** @param string|null $name*/public function setName(?string $name): void{$this->name = $name;}/*** @return string|null*/public function getFirstName(): ?string{return $this->firstName;}/*** @param string|null $firstName*/public function setFirstName(?string $firstName): void{$this->firstName = $firstName;}/*** @return string|null*/public function getAddress(): ?string{return $this->address;}/*** @param string|null $address*/public function setAddress(?string $address): void{$this->address = $address;}/*** @return string|null*/public function getPostal(): ?string{return $this->postal;}/*** @param string|null $postal*/public function setPostal(?string $postal): void{$this->postal = $postal;}/*** @return string|null*/public function getCountry(): ?string{return $this->country;}/*** @param string|null $country*/public function setCountry(?string $country): void{$this->country = $country;}/*** @return mixed*/public function getUser(){return $this->user;}/*** @param mixed $user*/public function setUser($user): void{$this->user = $user;}public function getId(): ?int{return $this->id;}}