We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ed8ac commit 1963906Copy full SHA for 1963906
src/Entities/Properties/Date.php
@@ -135,6 +135,7 @@ public function getStart(): DateTime
135
if ($this->getContent() === null) {
136
throw new HandlingException('Invalid content: The content of the Date Property is null.');
137
}
138
+
139
return $this->getContent()->getStart();
140
141
@@ -146,6 +147,7 @@ public function getEnd(): ?DateTime
146
147
148
return null;
149
150
151
return $this->getContent()->getEnd();
152
153
@@ -157,6 +159,7 @@ public function hasTime(): bool
157
159
158
160
return false;
161
162
163
return $this->getContent()->hasTime();
164
165
0 commit comments