Completed
Push — develop ( c1ef57...2d3e63 )
by Neomerx
36:35 queued 15:21
created
src/Exceptions/InvalidSchemaFactoryException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Exceptions;
4 4
 
Please login to merge, or discard this patch.
src/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute;
4 4
 
Please login to merge, or discard this patch.
src/Types/DateTimeType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Types;
4 4
 
Please login to merge, or discard this patch.
src/Types/TypeTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Types;
4 4
 
Please login to merge, or discard this patch.
src/Types/DateTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Types;
4 4
 
Please login to merge, or discard this patch.
src/Types/DateType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Types;
4 4
 
Please login to merge, or discard this patch.
src/Encoder/Encoder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Encoder;
4 4
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 
127 127
         parse_str($this->getOriginalUri()->getQuery(), $queryParams);
128 128
 
129
-        return function ($offset) use ($pageSize, $queryParams) {
129
+        return function($offset) use ($pageSize, $queryParams) {
130 130
             $paramsWithPaging = array_merge($queryParams, [
131 131
                 BaseQueryParserInterface::PARAM_PAGE => [
132 132
                     JsonApiQueryParserInterface::PARAM_PAGING_OFFSET => $offset,
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
                 ],
135 135
             ]);
136 136
             $newUri  = $this->getOriginalUri()->withQuery(http_build_query($paramsWithPaging));
137
-            $fullUrl = (string)$newUri;
137
+            $fullUrl = (string) $newUri;
138 138
             $link    = $this->getFactory()->createLink(false, $fullUrl, false);
139 139
 
140 140
             return $link;
Please login to merge, or discard this patch.
src/Models/TagStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Models;
4 4
 
Please login to merge, or discard this patch.
src/Models/ModelStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Limoncello\Flute\Models;
4 4
 
Please login to merge, or discard this patch.