Passed
Push — master ( 60c378...33ffe1 )
by Ondřej
02:20
created
src/Ivory/Exception/ConnectionException.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\Exception;
4 4
 
5 5
 use Exception;
Please login to merge, or discard this patch.
src/Ivory/Exception/UndefinedTypeException.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\Exception;
4 4
 
5 5
 class UndefinedTypeException extends \LogicException
Please login to merge, or discard this patch.
src/Ivory/Exception/InvalidStateException.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\Exception;
4 4
 
5 5
 class InvalidStateException extends \LogicException
Please login to merge, or discard this patch.
src/Ivory/Exception/ParseException.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\Exception;
4 4
 
5 5
 class ParseException extends \RuntimeException
Please login to merge, or discard this patch.
src/Ivory/Value/TxIdSnapshot.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
 /**
Please login to merge, or discard this patch.
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.