Completed
Push — master ( 15fa36...139bf1 )
by Tim
10:38 queued 08:31
created
Classes/Service/Url/RealUrl.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 use DmitryDulepov\Realurl\Configuration\ConfigurationReader;
11 11
 use DmitryDulepov\Realurl\Utility;
12
-use HDNET\Calendarize\Domain\Model\Index;
13 12
 use HDNET\Calendarize\Service\IndexerService;
14 13
 use HDNET\Calendarize\Utility\HelperUtility;
15 14
 use TYPO3\CMS\Core\Database\ConnectionPool;
Please login to merge, or discard this patch.
Classes/Command/ImportCommandController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,7 @@
 block discarded – undo
87 87
                 $startDateTime = new \DateTime($icalEvent['DTSTART']);
88 88
                 if($icalEvent['DTEND']) {
89 89
                 	$endDateTime = new \DateTime($icalEvent['DTEND']);
90
-				}
91
-                else {
90
+				} else {
92 91
                 	$endDateTime = clone($startDateTime);
93 92
                 	$endDateTime->add(new \DateInterval($icalEvent['DURATION']));
94 93
 				}
Please login to merge, or discard this patch.