Completed
Push — master ( 757361...3bef1d )
by Tim
18:04 queued 12:55
created
Classes/ViewHelpers/IndexTraversingViewHelper.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
  * Index traversing.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\ViewHelpers;
9 9
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             $this->arguments['index'],
53 53
             $this->arguments['future'],
54 54
             $this->arguments['past'],
55
-            (int) $this->arguments['limit'],
55
+            (int)$this->arguments['limit'],
56 56
             $this->arguments['sort'],
57 57
             $this->arguments['useIndexTime']
58 58
         );
Please login to merge, or discard this patch.
Classes/Domain/Model/SysFileReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  *
6 6
  * Enhance the core SysFileReference.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace HDNET\Calendarize\Domain\Model;
11 11
 
Please login to merge, or discard this patch.
Classes/Domain/Model/Request/AbstractBookingRequest.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
  * AbstractBookingRequest.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model\Request;
9 9
 
Please login to merge, or discard this patch.
Classes/Domain/Model/Request/DefaultBookingRequest.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
  * DefaultBookingRequest.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model\Request;
9 9
 
Please login to merge, or discard this patch.
Classes/Domain/Model/PluginConfiguration.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
  * PluginConfiguration.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model;
9 9
 
Please login to merge, or discard this patch.
Classes/Domain/Model/ConfigurationGroup.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
  * Logical configuration group.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model;
9 9
 
Please login to merge, or discard this patch.
Classes/Domain/Model/CalDav.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
  * CalDav configuration.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model;
9 9
 
Please login to merge, or discard this patch.
Classes/Domain/Model/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Configuration for time options.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model;
9 9
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      */
190 190
     public function isAllDay()
191 191
     {
192
-        return (bool) $this->allDay;
192
+        return (bool)$this->allDay;
193 193
     }
194 194
 
195 195
     /**
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
      */
200 200
     public function setAllDay($allDay)
201 201
     {
202
-        $this->allDay = (bool) $allDay;
202
+        $this->allDay = (bool)$allDay;
203 203
     }
204 204
 
205 205
     /**
Please login to merge, or discard this patch.
Classes/Domain/Model/ConfigurationInterface.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
  * Configuration Interface for constants.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace HDNET\Calendarize\Domain\Model;
9 9
 
Please login to merge, or discard this patch.