Completed
Push — develop ( 62785e...20327f )
by Neomerx
01:57
created
src/Validation/ValidatorWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     protected function setWrapperErrors(array $wrapperErrors): self
163 163
     {
164 164
         if (empty($wrapperErrors) === false) {
165
-            assert(call_user_func(function () use ($wrapperErrors) : bool {
165
+            assert(call_user_func(function() use ($wrapperErrors) : bool {
166 166
                 $allAreErrors = true;
167 167
 
168 168
                 foreach ($wrapperErrors as $error) {
Please login to merge, or discard this patch.
src/Http/ThrowableHandlers/FluteThrowableHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
             $details  = null;
100 100
             if ($this->isDebug === true) {
101 101
                 $message = $throwable->getMessage();
102
-                $details = (string)$throwable;
102
+                $details = (string) $throwable;
103 103
             }
104 104
             $errors->add(new Error(null, null, $httpCode, null, $message, $details));
105 105
         }
Please login to merge, or discard this patch.
src/Encoder/Encoder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         parse_str($this->getOriginalUri()->getQuery(), $queryParams);
127 127
 
128
-        return function ($offset) use ($pageSize, $queryParams) {
128
+        return function($offset) use ($pageSize, $queryParams) {
129 129
             $paramsWithPaging = array_merge($queryParams, [
130 130
                 QueryParametersParserInterface::PARAM_PAGE => [
131 131
                     PaginationStrategyInterface::PARAM_PAGING_SKIP => $offset,
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 ],
134 134
             ]);
135 135
             $newUri           = $this->getOriginalUri()->withQuery(http_build_query($paramsWithPaging));
136
-            $fullUrl          = (string)$newUri;
136
+            $fullUrl          = (string) $newUri;
137 137
             $link             = $this->getFactory()->createLink($fullUrl, null, true);
138 138
 
139 139
             return $link;
Please login to merge, or discard this patch.
src/Http/Traits/FluteRoutesTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
         assert(array_key_exists(SchemaInterface::class, class_implements($schemeClass)) === true);
54 54
         $type = $schemeClass::TYPE;
55 55
 
56
-        $indexSlug = '/{' . CI::ROUTE_KEY_INDEX . '}';
57
-        $params    = function ($method) use ($type) {
58
-            return [RouteInterface::PARAM_NAME => $type . '_' . $method];
56
+        $indexSlug = '/{'.CI::ROUTE_KEY_INDEX.'}';
57
+        $params    = function($method) use ($type) {
58
+            return [RouteInterface::PARAM_NAME => $type.'_'.$method];
59 59
         };
60
-        $handler   = function ($method) use ($controllerClass) {
60
+        $handler   = function($method) use ($controllerClass) {
61 61
             return [$controllerClass, $method];
62 62
         };
63 63
 
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
             $group->post($type, $handler(CI::METHOD_CREATE), $params(CI::METHOD_CREATE));
71 71
         }
72 72
         if (in_array(ControllerReadInterface::class, $classInterfaces) === true) {
73
-            $group->get($type . $indexSlug, $handler(CI::METHOD_READ), $params(CI::METHOD_READ));
73
+            $group->get($type.$indexSlug, $handler(CI::METHOD_READ), $params(CI::METHOD_READ));
74 74
         }
75 75
         if (in_array(ControllerUpdateInterface::class, $classInterfaces) === true) {
76
-            $group->patch($type . $indexSlug, $handler(CI::METHOD_UPDATE), $params(CI::METHOD_UPDATE));
76
+            $group->patch($type.$indexSlug, $handler(CI::METHOD_UPDATE), $params(CI::METHOD_UPDATE));
77 77
         }
78 78
         if (in_array(ControllerDeleteInterface::class, $classInterfaces) === true) {
79
-            $group->delete($type . $indexSlug, $handler(CI::METHOD_DELETE), $params(CI::METHOD_DELETE));
79
+            $group->delete($type.$indexSlug, $handler(CI::METHOD_DELETE), $params(CI::METHOD_DELETE));
80 80
         }
81 81
 
82 82
         return $group;
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
      */
92 92
     protected static function controller(GroupInterface $group, string $subUri, string $controllerClass): GroupInterface
93 93
     {
94
-        $slugged = $subUri . '/{' . CI::ROUTE_KEY_INDEX . '}';
95
-        $params  = function ($method) use ($subUri) {
96
-            return [RouteInterface::PARAM_NAME => $subUri . '_' . $method];
94
+        $slugged = $subUri.'/{'.CI::ROUTE_KEY_INDEX.'}';
95
+        $params  = function($method) use ($subUri) {
96
+            return [RouteInterface::PARAM_NAME => $subUri.'_'.$method];
97 97
         };
98
-        $handler = function ($method) use ($controllerClass) {
98
+        $handler = function($method) use ($controllerClass) {
99 99
             return [$controllerClass, $method];
100 100
         };
101 101
 
@@ -112,11 +112,11 @@  discard block
 block discarded – undo
112 112
             $group->get($slugged, $handler(CI::METHOD_READ), $params(CI::METHOD_READ));
113 113
         }
114 114
         if (in_array(ControllerUpdateInterface::class, $classInterfaces) === true) {
115
-            $updateUri = $slugged . '/' . CI::METHOD_UPDATE;
115
+            $updateUri = $slugged.'/'.CI::METHOD_UPDATE;
116 116
             $group->post($updateUri, $handler(CI::METHOD_UPDATE), $params(CI::METHOD_UPDATE));
117 117
         }
118 118
         if (in_array(ControllerDeleteInterface::class, $classInterfaces) === true) {
119
-            $deleteUri = $slugged . '/' . CI::METHOD_DELETE;
119
+            $deleteUri = $slugged.'/'.CI::METHOD_DELETE;
120 120
             $group->post($deleteUri, $handler(CI::METHOD_DELETE), $params(CI::METHOD_DELETE));
121 121
         }
122 122
 
@@ -148,13 +148,13 @@  discard block
 block discarded – undo
148 148
         /** @var string $controllerClass */
149 149
         /** @var string $schemaClass */
150 150
 
151
-        $resourceIdUri = $subUri . '/{' . CI::ROUTE_KEY_INDEX . '}/';
152
-        $selfUri       = $resourceIdUri . DocumentInterface::KEYWORD_RELATIONSHIPS . '/' . $relationshipName;
151
+        $resourceIdUri = $subUri.'/{'.CI::ROUTE_KEY_INDEX.'}/';
152
+        $selfUri       = $resourceIdUri.DocumentInterface::KEYWORD_RELATIONSHIPS.'/'.$relationshipName;
153 153
 
154 154
         return $group
155 155
             // `self`
156 156
             ->get($selfUri, [$controllerClass, $selfGetMethod])
157 157
             // `related`
158
-            ->get($resourceIdUri . $relationshipName, [$controllerClass, $selfGetMethod]);
158
+            ->get($resourceIdUri.$relationshipName, [$controllerClass, $selfGetMethod]);
159 159
     }
160 160
 }
Please login to merge, or discard this patch.
src/Adapters/PaginationStrategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * @inheritdoc
70 70
      */
71
-    public function parseParameters(?array $parameters): array
71
+    public function parseParameters(? array $parameters) : array
72 72
     {
73 73
         if ($parameters === null) {
74 74
             return [0, $this->getDefaultPageSize()];
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             0,
82 82
             PHP_INT_MAX
83 83
         );
84
-        $size   = $this->getValue(
84
+        $size = $this->getValue(
85 85
             $parameters,
86 86
             static::PARAM_PAGING_SIZE,
87 87
             $this->getDefaultPageSize(),
Please login to merge, or discard this patch.
src/Schema/Schema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,12 +208,12 @@
 block discarded – undo
208 208
             return [static::DATA => $data->getData()];
209 209
         }
210 210
 
211
-        $buildUrl = function ($offset) use ($data, $uri) {
211
+        $buildUrl = function($offset) use ($data, $uri) {
212 212
             $paramsWithPaging = [
213 213
                 PaginationStrategyInterface::PARAM_PAGING_SKIP => $offset,
214 214
                 PaginationStrategyInterface::PARAM_PAGING_SIZE => $data->getLimit(),
215 215
             ];
216
-            $fullUrl          = $uri . '?' . http_build_query($paramsWithPaging);
216
+            $fullUrl = $uri.'?'.http_build_query($paramsWithPaging);
217 217
 
218 218
             return $fullUrl;
219 219
         };
Please login to merge, or discard this patch.
src/Package/FluteSettings.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,8 +108,8 @@
 block discarded – undo
108 108
         );
109 109
         assert(empty($validatorsFileMask) === false, "Invalid Validators file mask `$validatorsFileMask`.");
110 110
 
111
-        $schemesPath    = $schemesFolder . DIRECTORY_SEPARATOR . $schemesFileMask;
112
-        $validatorsPath = $validatorsFolder . DIRECTORY_SEPARATOR . $validatorsFileMask;
111
+        $schemesPath    = $schemesFolder.DIRECTORY_SEPARATOR.$schemesFileMask;
112
+        $validatorsPath = $validatorsFolder.DIRECTORY_SEPARATOR.$validatorsFileMask;
113 113
 
114 114
         $requireUniqueTypes = $defaults[static::KEY_SCHEMES_REQUIRE_UNIQUE_TYPES] ?? true;
115 115
 
Please login to merge, or discard this patch.
src/Contracts/Http/Query/ParametersMapperInterface.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,17 +52,17 @@
 block discarded – undo
52 52
     public function withIncludes(iterable $includes): self;
53 53
 
54 54
     /**
55
-     * @return iterable
55
+     * @return \Generator
56 56
      */
57 57
     public function getMappedFilters(): iterable;
58 58
 
59 59
     /**
60
-     * @return iterable
60
+     * @return \Generator
61 61
      */
62 62
     public function getMappedSorts(): iterable;
63 63
 
64 64
     /**
65
-     * @return iterable
65
+     * @return \Generator
66 66
      */
67 67
     public function getMappedIncludes(): iterable;
68 68
 
Please login to merge, or discard this patch.
src/Contracts/Http/Query/QueryParserInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     public function areFiltersWithAnd(): bool;
43 43
 
44 44
     /**
45
-     * @return iterable
45
+     * @return \Generator
46 46
      */
47 47
     public function getFilters(): iterable;
48 48
 
Please login to merge, or discard this patch.