Completed
Pull Request — master (#220)
by
unknown
07:54
created
Classes/Service/CalDav/PrincipalBackendTypo3.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * PrincipalBackendTypo3.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\CalDav;
9 9
 
Please login to merge, or discard this patch.
Classes/Service/CalDav/BackendTypo3.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Backend for events.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\CalDav;
9 9
 
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         $result = [
219 219
             200 => [], // Ok
220 220
             403 => [], // Forbidden
221
-            424 => [],  // Failed Dependency
221
+            424 => [], // Failed Dependency
222 222
         ];
223 223
 
224 224
         $hasError = false;
Please login to merge, or discard this patch.
Classes/Service/CalDav/AuthBackendTypo3.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * TYPO3 Auth backend.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\CalDav;
9 9
 
Please login to merge, or discard this patch.
Classes/Service/TimeSelectionWizard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * TimeSelectionWizard.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service;
9 9
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         if ('' === $id && '' === $name) {
35 35
             return '';
36 36
         }
37
-        $times = $this->getTimes((int) $params['pid']);
37
+        $times = $this->getTimes((int)$params['pid']);
38 38
         if (!$times) {
39 39
             return '';
40 40
         }
Please login to merge, or discard this patch.
Classes/Service/FlexFormService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Work on flex forms.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service;
9 9
 
Please login to merge, or discard this patch.
Classes/Service/TimeTable/ExternalTimeTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * External service.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\TimeTable;
9 9
 
Please login to merge, or discard this patch.
Classes/Service/TimeTable/AbstractTimeTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Abstract time table service.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\TimeTable;
9 9
 
Please login to merge, or discard this patch.
Classes/Service/TimeTable/TimeTimeTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Time service.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\TimeTable;
9 9
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
      */
242 242
     protected function getFrequencyLimitPerItem()
243 243
     {
244
-        $maxLimit = (int) ConfigurationUtility::get('frequencyLimitPerItem');
244
+        $maxLimit = (int)ConfigurationUtility::get('frequencyLimitPerItem');
245 245
         if ($maxLimit <= 0) {
246 246
             $maxLimit = 300;
247 247
         }
Please login to merge, or discard this patch.
Classes/Service/TimeTable/GroupTimeTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Group service.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Service\TimeTable;
9 9
 
Please login to merge, or discard this patch.