Completed
Push — master ( 8a9a36...5d30b0 )
by Ondřej
03:00
created
src/Ivory/Value/VarBitString.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @return VarBitString
32 32
      * @throws \InvalidArgumentException if <tt>$length</tt> is a non-positive number (PostgreSQL forbids it)
33 33
      */
34
-    public static function fromString(string $bits, ?int $maxLength = null): VarBitString
34
+    public static function fromString(string $bits, ?int $maxLength = null) : VarBitString
35 35
     {
36 36
         $bits = (string)$bits;
37 37
 
Please login to merge, or discard this patch.
src/Ivory/Value/LineSegment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/TimeInterval.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/MacAddr.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/Box.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/Circle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Value/Timestamp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      *                         fractional part;
173 173
      *                       <tt>null</tt> iff the date/time is not finite
174 174
      */
175
-    public function toParts(): ?array
175
+    public function toParts(): ? array
176 176
     {
177 177
         if ($this->inf) {
178 178
             return null;
Please login to merge, or discard this patch.
src/Ivory/Value/PgLogSequenceNumber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Ivory\Value;
5 5
 
Please login to merge, or discard this patch.