Completed
Pull Request — master (#443)
by
unknown
02:03
created
Classes/Command/ImportCommandController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Symfony\Component\Console\Input\InputInterface;
15 15
 use Symfony\Component\Console\Output\OutputInterface;
16 16
 use Symfony\Component\Console\Style\SymfonyStyle;
17
-use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
18 17
 use TYPO3\CMS\Core\Utility\GeneralUtility;
19 18
 use TYPO3\CMS\Core\Utility\MathUtility;
20 19
 use TYPO3\CMS\Extbase\SignalSlot\Dispatcher;
Please login to merge, or discard this patch.
Classes/Service/TimeTable/ExternalTimeTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * Inject time table service.
32 32
      *
33
-     * @param \HDNET\Calendarize\Service\ICalServiceInterface $timeTableService
33
+     * @param \HDNET\Calendarize\Service\ICalServiceInterface $iCalService
34 34
      */
35 35
     public function injectICalServiceInterface(ICalServiceInterface $iCalService)
36 36
     {
Please login to merge, or discard this patch.
Classes/Utility/DateTimeUtility.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,6 @@  discard block
 block discarded – undo
153 153
     /**
154 154
      * Normalize quartar.
155 155
      *
156
-     * @param int|null $quarter
157 156
      *
158 157
      * @return int
159 158
      */
@@ -237,7 +236,7 @@  discard block
 block discarded – undo
237 236
     /**
238 237
      * Get the End of the given day.
239 238
      *
240
-     * @param int|string|\DateTimeInterface|null $dateInformation
239
+     * @param \DateTime $dateInformation
241 240
      *
242 241
      * @return \DateTime
243 242
      */
Please login to merge, or discard this patch.
Classes/Service/DissectICalService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         // TODO: handle timezone???
24 24
         $events = $parser->getEvents();
25 25
 
26
-        $wrapEvents = function (ICalEvent $event) {
26
+        $wrapEvents = function(ICalEvent $event) {
27 27
             return new DissectEvent($event);
28 28
         };
29 29
 
Please login to merge, or discard this patch.