| 1 | <?php |
||
| 27 | final class Season implements ObjectInitializedInterface { |
||
| 28 | /** |
||
| 29 | * @var null|Date inclusive end date of the recurrence period |
||
| 30 | */ |
||
| 31 | private $end = null; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var null|Date inclusive start date of the recurrence period |
||
| 35 | */ |
||
| 36 | private $start = null; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return Date|null inclusive end date of the recurrence period |
||
| 40 | */ |
||
| 41 | 1 | public function getEnd() { |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return Date|null inclusive start date of the recurrence period |
||
| 47 | */ |
||
| 48 | 1 | public function getStart() { |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @inheritdoc |
||
| 54 | */ |
||
| 55 | 1 | public static function initializeByObject(stdClass $Object) { |
|
| 61 | } |
||
| 62 |