Skip to content

Commit 1963906

Browse files
authored
Apply fixes from StyleCI (#78)
1 parent 40ed8ac commit 1963906

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Entities/Properties/Date.php

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public function getStart(): DateTime
135135
if ($this->getContent() === null) {
136136
throw new HandlingException('Invalid content: The content of the Date Property is null.');
137137
}
138+
138139
return $this->getContent()->getStart();
139140
}
140141

@@ -146,6 +147,7 @@ public function getEnd(): ?DateTime
146147
if ($this->getContent() === null) {
147148
return null;
148149
}
150+
149151
return $this->getContent()->getEnd();
150152
}
151153

@@ -157,6 +159,7 @@ public function hasTime(): bool
157159
if ($this->getContent() === null) {
158160
return false;
159161
}
162+
160163
return $this->getContent()->hasTime();
161164
}
162165
}

0 commit comments

Comments
 (0)