Passed
Push — master ( f7ce50...d94e51 )
by Ondřej
02:04
created
src/Ivory/Type/ITypeProvider.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
 namespace Ivory\Type;
4 4
 
5 5
 interface ITypeProvider
Please login to merge, or discard this patch.
src/Ivory/Type/IntrospectingTypeDictionaryCompiler.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
 namespace Ivory\Type;
4 4
 
5 5
 use Ivory\Exception\InternalException;
Please login to merge, or discard this patch.
src/Ivory/Type/ITypeLoader.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
 namespace Ivory\Type;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Ivory/Type/Std/HstoreType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Type\BaseType;
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                 throw new \InvalidArgumentException('Invalid syntax of hstore value');
36 36
             }
37 37
 
38
-            $k = ($m[2][0] ? : $this->unescapeAtom($m[1][0]));
38
+            $k = ($m[2][0] ?: $this->unescapeAtom($m[1][0]));
39 39
             $v = (!empty($m[4][0]) ? null : (!empty($m[5][0]) ? $m[5][0] : $this->unescapeAtom($m[3][0])));
40 40
             $result[$k] = $v;
41 41
 
Please login to merge, or discard this patch.
src/Ivory/Type/Std/LineType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Value\Line;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/JsonBType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Value\Json;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/VarBitStringType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Value\VarBitString;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/FixedBitStringType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Value\FixedBitString;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/CircleType.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
 namespace Ivory\Type\Std;
4 4
 
5 5
 use Ivory\Value\Circle;
Please login to merge, or discard this patch.