Passed
Push — master ( 60c378...33ffe1 )
by Ondřej
02:20
created
src/Ivory/Type/ConnectionDependentObject.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\Connection\IConnection;
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\Lang\Sql\Types;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                 throw new \InvalidArgumentException('Invalid syntax of hstore value');
72 72
             }
73 73
 
74
-            $k = ($m[2][0] ? : $this->unescapeAtom($m[1][0]));
74
+            $k = ($m[2][0] ?: $this->unescapeAtom($m[1][0]));
75 75
             $v = (!empty($m[4][0]) ? null : (!empty($m[5][0]) ? $m[5][0] : $this->unescapeAtom($m[3][0])));
76 76
             $result[$k] = $v;
77 77
 
Please login to merge, or discard this patch.
src/Ivory/Type/Postgresql/RecordType.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\Postgresql;
4 4
 
5 5
 use Ivory\Type\ConnectionDependentObject;
Please login to merge, or discard this patch.
src/Ivory/Relation/Column.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\Relation;
4 4
 
5 5
 use Ivory\Type\IValueSerializer;
Please login to merge, or discard this patch.
src/Ivory/Relation/ArrayRelation.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\Relation;
4 4
 
5 5
 use Ivory\Connection\IConnection;
Please login to merge, or discard this patch.
src/Ivory/Relation/IColumn.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\Relation;
4 4
 
5 5
 use Ivory\Type\IValueSerializer;
Please login to merge, or discard this patch.
src/Ivory/Relation/FilteredColumn.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\Relation;
4 4
 
5 5
 use Ivory\Type\IValueSerializer;
Please login to merge, or discard this patch.
src/Ivory/Relation/IRelation.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\Relation;
4 4
 
5 5
 use Ivory\Data\Map\IRelationMap;
Please login to merge, or discard this patch.