Passed
Push — master ( 6cd7aa...14d5fd )
by Ondřej
02:18
created
src/Ivory/Value/Quantity.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\Value;
4 4
 
5 5
 use Ivory\Exception\UndefinedOperationException;
Please login to merge, or discard this patch.
src/Ivory/Value/NetAddress.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\Value;
4 4
 
5 5
 use Ivory\Exception\NotImplementedException;
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                 $i += $lzsLen - 1;
279 279
                 continue;
280 280
             }
281
-            $result .= (ltrim($fields[$i], '0') ? : '0');
281
+            $result .= (ltrim($fields[$i], '0') ?: '0');
282 282
         }
283 283
         if ($lzsStart + $lzsLen == 8) {
284 284
             $result .= ':';
Please login to merge, or discard this patch.
src/Ivory/Query/ConstrainedRelationDefinition.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\Query;
4 4
 
5 5
 use Ivory\Lang\Sql\ISqlPredicate;
Please login to merge, or discard this patch.
src/Ivory/Query/LimitedRelationDefinition.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\Query;
4 4
 
5 5
 use Ivory\Type\ITypeDictionary;
Please login to merge, or discard this patch.
src/Ivory/Query/SqlCommand.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\Query;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Ivory/Type/IValueSerializer.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/TypeRegister.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/MacAddrType.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\Type\BaseType;
Please login to merge, or discard this patch.
src/Ivory/Type/Std/TimestampTzType.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\Connection\Config\ConfigParam;
Please login to merge, or discard this patch.