Passed
Push — master ( 60c378...33ffe1 )
by Ondřej
02:20
created
src/Ivory/Type/Std/StdTypeLoader.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\Lang\Sql\Types;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/BoxType.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\Box;
Please login to merge, or discard this patch.
src/Ivory/Type/ITypeDictionary.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/Postgresql/ArrayType.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\Exception\InternalException;
Please login to merge, or discard this patch.
src/Ivory/Type/BaseType.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\NamedDbObject;
Please login to merge, or discard this patch.
src/Ivory/Type/Ivory/IdentifierSerializer.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\Ivory;
4 4
 
5 5
 use Ivory\Type\IValueSerializer;
Please login to merge, or discard this patch.
src/Ivory/Type/Ivory/RelationSerializer.php 1 patch
Spacing   +2 added lines, -3 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\Ivory;
4 4
 
5 5
 use Ivory\INamedDbObject;
@@ -59,8 +59,7 @@  discard block
 block discarded – undo
59 59
             $type = $column->getType();
60 60
             if ($type === null) {
61 61
                 $colIdent = ($column->getName() !== null ?
62
-                    'column ' . $column->getName() :
63
-                    StringUtils::englishOrd($i+1) . ' column'
62
+                    'column ' . $column->getName() : StringUtils::englishOrd($i + 1) . ' column'
64 63
                 );
65 64
                 throw new \InvalidArgumentException("Invalid relation for serialization - $colIdent has unknown type");
66 65
             }
Please login to merge, or discard this patch.
src/Ivory/Type/Ivory/UndefinedType.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\Ivory;
4 4
 
5 5
 use Ivory\Connection\IConnection;
Please login to merge, or discard this patch.
src/Ivory/Type/Ivory/CommandSerializer.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\Ivory;
4 4
 
5 5
 use Ivory\Query\ICommand;
Please login to merge, or discard this patch.