Passed
Push — master ( ac0ff0...f43e58 )
by Alexander
01:56
created
src/traits/Model.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
     public static function find(array $conditions = [], array $options = []): \Generator
82 82
     {
83 83
         $conditions = self::filterByFields($conditions);
84
-        $with = array_key_exists('with', $options) ? (array)$options['with'] : false;
84
+        $with = array_key_exists('with', $options) ? (array) $options['with'] : false;
85 85
         unset($options['with']);
86 86
         $result = static::db()->find(static::table(), $conditions, $options);
87 87
         $pk = static::pk();
88
-        $gen = function () use ($result, $pk, $with) {
88
+        $gen = function() use ($result, $pk, $with) {
89 89
             foreach ($result as $row) {
90 90
                 $model = new static($row);
91 91
                 if ($with) {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         if (empty($fields) === false) {
131 131
             $data = array_filter(
132 132
                 $data,
133
-                function ($key) use ($fields) {
133
+                function($key) use ($fields) {
134 134
                     return in_array($key, $fields);
135 135
                 },
136 136
                 ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.
src/interfaces/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     public function query($query, array $params = []);
15 15
 
16
-    public function one(string $table, array $conditions, array $options = []):?array;
16
+    public function one(string $table, array $conditions, array $options = []): ?array;
17 17
 
18 18
     public function find(string $table, array $conditions, array $options = []);
19 19
 
Please login to merge, or discard this patch.
src/response/Page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         try {
132 132
             $headfile = $this->getLayoutFile('head');
133 133
             if (file_exists($headfile)) {
134
-                (function ($sldkfjlksejflskjflskdjflskdfj) {
134
+                (function($sldkfjlksejflskjflskdjflskdfj) {
135 135
                     extract($this->data);
136 136
                     include $sldkfjlksejflskjflskdjflskdfj;
137 137
                 })($headfile);
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
             $neckfile = $this->getLayoutFile('neck');
141 141
             if (file_exists($neckfile)) {
142
-                (function ($lidsinqjhsdfytqkwjkasjdksadsdg) {
142
+                (function($lidsinqjhsdfytqkwjkasjdksadsdg) {
143 143
                     extract($this->data);
144 144
                     include $lidsinqjhsdfytqkwjkasjdksadsdg;
145 145
                 })($neckfile);
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 
181 181
         ob_start();
182 182
         try {
183
-            (function ($ldkfoskdfosjicyvutwehkshfskjdf) {
183
+            (function($ldkfoskdfosjicyvutwehkshfskjdf) {
184 184
                 extract($this->data);
185 185
                 include $ldkfoskdfosjicyvutwehkshfskjdf;
186 186
             })($footfile);
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         ob_start();
205 205
         try {
206 206
             // or another way to hide the file variable?
207
-            (function ($dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd) {
207
+            (function($dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd) {
208 208
                 extract($this->data);
209 209
                 include $dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd;
210 210
             })($file);
Please login to merge, or discard this patch.
src/data/PDO.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
         if (empty($conditions)) {
143 143
             return "";
144 144
         }
145
-        $fun = function ($o, $v) use ($conditions) {
145
+        $fun = function($o, $v) use ($conditions) {
146 146
             if (is_array($conditions[$v])) {
147 147
                 $qa = [];
148 148
                 foreach ($conditions[$v] as $key => $value) {
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
     private function data(array $data): string
231 231
     {
232
-        $fun = function ($o, $v) {
232
+        $fun = function($o, $v) {
233 233
             return "{$o}, {$v} = :d_{$v}";
234 234
         };
235 235
         return trim((string) array_reduce(array_keys($data), $fun, ""), ", ");
Please login to merge, or discard this patch.
src/Dispatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     public function response(): ?Response
130 130
     {
131 131
         $cbs = $this->middlewares;
132
-        $call_eventual_route_at_end_of_chain = function (Request $request, Chain $chain): ?Response {
132
+        $call_eventual_route_at_end_of_chain = function(Request $request, Chain $chain): ?Response {
133 133
             $route = $request->route();
134 134
             if (is_null($route)) {
135 135
                 if (Environment::get('debug')) {
Please login to merge, or discard this patch.
src/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
             $parameters = array_filter(
107 107
                 $matches,
108
-                function ($v) {
108
+                function($v) {
109 109
                     return !is_int($v);
110 110
                 },
111 111
                 \ARRAY_FILTER_USE_KEY
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $url = self::$aliases[$url] ?? $url;
129 129
         return new Route(
130 130
             $url,
131
-            function (Request $request): ?Response {
131
+            function(Request $request): ?Response {
132 132
                 $page = response\Page::fromRequest($request);
133 133
                 // @TODO BC breaking, but move this?
134 134
                 return $page->isValid() ? $page : null;
Please login to merge, or discard this patch.