Completed
Push — master ( 32964b...ce7d35 )
by Anton
05:22
created
source/Spiral/ORM/Entities/Relations/ManyToMorphed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
      * $tag->tagged->posts;
190 190
      *
191 191
      * @param string $alias
192
-     * @return RecordEntity|RecordIterator
192
+     * @return null|EntityInterface
193 193
      */
194 194
     public function __get($alias)
195 195
     {
Please login to merge, or discard this patch.
source/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             $value = '';
33 33
         }
34 34
 
35
-        $replaces[$prefix . $key . $postfix] = $value;
35
+        $replaces[$prefix.$key.$postfix] = $value;
36 36
     }
37 37
 
38 38
     return strtr($string, $replaces);
Please login to merge, or discard this patch.
source/Spiral/Files/FileManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         }
64 64
 
65 65
         foreach (array_reverse($directoryChain) as $directory) {
66
-            if (!mkdir($baseDirectory = $baseDirectory . '/' . $directory)) {
66
+            if (!mkdir($baseDirectory = $baseDirectory.'/'.$directory)) {
67 67
                 return false;
68 68
             }
69 69
 
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 
349 349
         if ($extension) {
350 350
             //I should find more original way of doing that
351
-            rename($filename, $filename = $filename . '.' . $extension);
351
+            rename($filename, $filename = $filename.'.'.$extension);
352 352
             $this->destruct[] = $filename;
353 353
         }
354 354
 
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
         $path = str_replace('\\', '/', $path);
364 364
 
365 365
         //Potentially open links and ../ type directories?
366
-        return rtrim(preg_replace('/\/+/', '/', $path), '/') . ($directory ? '/' : '');
366
+        return rtrim(preg_replace('/\/+/', '/', $path), '/').($directory ? '/' : '');
367 367
     }
368 368
 
369 369
     /**
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
                     $relative = array_pad($relative, $padLength, '..');
395 395
                     break;
396 396
                 } else {
397
-                    $relative[0] = './' . $relative[0];
397
+                    $relative[0] = './'.$relative[0];
398 398
                 }
399 399
             }
400 400
         }
Please login to merge, or discard this patch.
source/Spiral/Files/Streams/StreamWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     {
223 223
         self::register();
224 224
 
225
-        $uri = 'spiral://' . spl_object_hash($stream);
225
+        $uri = 'spiral://'.spl_object_hash($stream);
226 226
         self::$uris[$uri] = $stream;
227 227
 
228 228
         return $uri;
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
     public static function releaseUri($uri)
274 274
     {
275 275
         if ($uri instanceof StreamInterface) {
276
-            $uri = 'spiral://' . spl_object_hash($uri);
276
+            $uri = 'spiral://'.spl_object_hash($uri);
277 277
         }
278 278
 
279 279
         unset(self::$uris[$uri]);
Please login to merge, or discard this patch.
source/Spiral/Stempler/Exporters/AttributesExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         if (preg_match_all('/ node:attributes(?:=\"([^\'"]+)\")?/i', $content, $matches)) {
25 25
             //We have to sort from longest to shortest
26
-            uasort($matches[0], function ($replaceA, $replaceB) {
26
+            uasort($matches[0], function($replaceA, $replaceB) {
27 27
                 return strlen($replaceB) - strlen($replaceA);
28 28
             });
29 29
 
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
                         continue;
38 38
                     }
39 39
 
40
-                    $inject[$name] = $name . '="' . $value . '"';
40
+                    $inject[$name] = $name.'="'.$value.'"';
41 41
                 }
42 42
 
43 43
                 //Injecting
44
-                $content = str_replace($replace, $inject ? ' ' . join(' ', $inject) : '', $content);
44
+                $content = str_replace($replace, $inject ? ' '.join(' ', $inject) : '', $content);
45 45
             }
46 46
         }
47 47
 
Please login to merge, or discard this patch.
source/Spiral/Stempler/Behaviours/IncludeBehaviour.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,9 +136,9 @@
 block discarded – undo
136 136
      */
137 137
     protected function createPlaceholder($name, &$blockID)
138 138
     {
139
-        $blockID = $name . '-' . $this->supervisor->uniquePlaceholder();
139
+        $blockID = $name.'-'.$this->supervisor->uniquePlaceholder();
140 140
 
141 141
         //Short block declaration syntax
142
-        return '${' . $blockID . '}';
142
+        return '${'.$blockID.'}';
143 143
     }
144 144
 }
145 145
\ No newline at end of file
Please login to merge, or discard this patch.
source/Spiral/Stempler/Syntaxes/DarkSyntax.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
             }
149 149
 
150 150
             $prefix = isset($attributes['namespace'])
151
-                ? $attributes['namespace'] . ':'
151
+                ? $attributes['namespace'].':'
152 152
                 : $attributes['prefix'];
153 153
 
154 154
             return new Prefixer($prefix, $path);
Please login to merge, or discard this patch.
source/Spiral/Stempler/ConditionalExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
                         continue;
81 81
                     }
82 82
 
83
-                    $pattern = '/^' . str_replace('*', '.+', $pattern) . '/i';
83
+                    $pattern = '/^'.str_replace('*', '.+', $pattern).'/i';
84 84
 
85 85
                     if (preg_match($pattern, $name)) {
86 86
                         unset($result[$name]);
Please login to merge, or discard this patch.
source/Spiral/Stempler/HtmlTokenizer.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                     }
130 130
 
131 131
                     if ($position == self::POSITION_IN_TAG) {
132
-                        $buffer = '<' . $buffer;
132
+                        $buffer = '<'.$buffer;
133 133
                     }
134 134
 
135 135
                     //Handling previous token
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                     //Checking for invalid characters in tag name or arguments
169 169
                     if ($position == self::POSITION_IN_TAG) {
170 170
                         if (!preg_match('/[a-z0-9 \._\-="\':\/\r\n\t]/i', $char)) {
171
-                            $buffer = '<' . $buffer;
171
+                            $buffer = '<'.$buffer;
172 172
                             $position = self::POSITION_PLAIN_TEXT;
173 173
                         }
174 174
                     }
@@ -202,18 +202,18 @@  discard block
 block discarded – undo
202 202
                 continue;
203 203
             }
204 204
 
205
-            $attributes[] = $attribute . '="' . $value . '"';
205
+            $attributes[] = $attribute.'="'.$value.'"';
206 206
         }
207 207
 
208 208
         if (!empty($attributes)) {
209
-            $result .= ' ' . join(' ', $attributes);
209
+            $result .= ' '.join(' ', $attributes);
210 210
         }
211 211
 
212 212
         if ($token[HtmlTokenizer::TOKEN_TYPE] == HtmlTokenizer::TAG_SHORT) {
213 213
             $result .= '/';
214 214
         }
215 215
 
216
-        return '<' . $result . '>';
216
+        return '<'.$result.'>';
217 217
     }
218 218
 
219 219
     /**
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
         $token = [
228 228
             self::TOKEN_NAME       => '',
229 229
             self::TOKEN_TYPE       => self::TAG_OPEN,
230
-            self::TOKEN_CONTENT    => '<' . ($content = $this->repairPHP($content)) . '>',
230
+            self::TOKEN_CONTENT    => '<'.($content = $this->repairPHP($content)).'>',
231 231
             self::TOKEN_ATTRIBUTES => []
232 232
         ];
233 233
 
Please login to merge, or discard this patch.