__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @copyright © TMS-Plugins. All rights reserved.
* @licence See LICENCE.md for license details.
*/
namespace AmeliaBooking\Domain\Entity\Schedule;
use AmeliaBooking\Domain\ValueObjects\Number\Integer\Id;
use AmeliaBooking\Domain\ValueObjects\DateTime\DateTimeValue;
use AmeliaBooking\Domain\ValueObjects\Number\Integer\DateRepeat;
use AmeliaBooking\Domain\ValueObjects\String\Name;
/**
* Class DayOff
*
* @package AmeliaBooking\Domain\Entity\Schedule
*/
class DayOff
{
/** @var Id */
private $id;
/** @var Name */
private $name;
/** @var DateTimeValue */
private $startDate;
/** @var DateTimeValue */
private $endDate;
/** @var DateRepeat */
private $repeat;
/**
* DayOff constructor.
*
* @param Name $name
* @param DateTimeValue $startDate
* @param DateTimeValue $endDate
* @param DateRepeat $repeat
*/
public function __construct(
Name $name,
DateTimeValue $startDate,
DateTimeValue $endDate,
DateRepeat $repeat
) {
$this->name = $name;
$this->startDate = $startDate;
$this->endDate = $endDate;
$this->repeat = $repeat;
}
/**
* @return Id
*/
public function getId()
{
return $this->id;
}
/**
* @param Id $id
*/
public function setId(Id $id)
{
$this->id = $id;
}
/**
* @return DateTimeValue
*/
public function getStartDate()
{
return $this->startDate;
}
/**
* @param DateTimeValue $startDate
*/
public function setStartDate(DateTimeValue $startDate)
{
$this->startDate = $startDate;
}
/**
* @return DateTimeValue
*/
public function getEndDate()
{
return $this->endDate;
}
/**
* @param DateTimeValue $endDate
*/
public function setEndDate(DateTimeValue $endDate)
{
$this->endDate = $endDate;
}
/**
* @return DateRepeat
*/
public function getRepeat()
{
return $this->repeat;
}
/**
* @param DateRepeat $repeat
*/
public function setRepeat(DateRepeat $repeat)
{
$this->repeat = $repeat;
}
/**
* @return Name
*/
public function getName()
{
return $this->name;
}
/**
* @param Name $name
*/
public function setName(Name $name)
{
$this->name = $name;
}
/**
* @return array
*/
public function toArray()
{
return [
'id' => null !== $this->id ? $this->id->getValue() : null,
'name' => $this->name->getValue(),
'startDate' => $this->startDate->getValue()->format('Y-m-d'),
'endDate' => $this->endDate->getValue()->format('Y-m-d'),
'repeat' => $this->repeat->getValue(),
];
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DayOff.php | File | 2.87 KB | 0640 |
|
| Period.php | File | 3.69 KB | 0640 |
|
| PeriodLocation.php | File | 1.28 KB | 0640 |
|
| PeriodService.php | File | 1.26 KB | 0640 |
|
| SpecialDay.php | File | 2.48 KB | 0640 |
|
| SpecialDayPeriod.php | File | 3.72 KB | 0640 |
|
| SpecialDayPeriodLocation.php | File | 1.34 KB | 0640 |
|
| SpecialDayPeriodService.php | File | 1.33 KB | 0640 |
|
| TimeOut.php | File | 1.92 KB | 0640 |
|
| WeekDay.php | File | 3.64 KB | 0640 |
|