@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace smtech\CanvasICSSync\SyncIntoCanvas; |
4 | 4 | |
5 | -use DateTime; |
|
6 | 5 | use vcalendar; |
7 | 6 | use Battis\DataUtilities; |
8 | 7 |
@@ -39,5 +39,5 @@ |
||
39 | 39 | * @param Event $event |
40 | 40 | * @return Event The transformed event |
41 | 41 | */ |
42 | - abstract public function transform(Event &$event); |
|
42 | + abstract public function transform(Event & $event); |
|
43 | 43 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | class RemoveSummaryBracketTags extends Transform |
8 | 8 | { |
9 | - public function transform(Event &$event) |
|
9 | + public function transform(Event & $event) |
|
10 | 10 | { |
11 | 11 | $event->setProperty( |
12 | 12 | 'SUMMARY', |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | class MarkdownDescription extends Transform |
9 | 9 | { |
10 | - public function transform(Event &$event) |
|
10 | + public function transform(Event & $event) |
|
11 | 11 | { |
12 | 12 | $event->setProperty( |
13 | 13 | 'DESCRIPTION', |