Completed
Pull Request — master (#457)
by Claus
02:40
created
examples/include/class_customvariableprovider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if ($path === 'random') {
40 40
             return 'random' . sha1(rand(0, 999999999));
41 41
         } elseif ($path === 'incrementer') {
42
-            return ++ $this->incrementer;
42
+            return ++$this->incrementer;
43 43
         } else {
44 44
             return parent::getByPath($path);
45 45
         }
Please login to merge, or discard this patch.
src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,12 +91,12 @@
 block discarded – undo
91 91
         $argumentName = $this->resolveContentArgumentName();
92 92
         $arguments = $this->arguments;
93 93
         if (!empty($argumentName) && isset($arguments[$argumentName])) {
94
-            $renderChildrenClosure = function () use ($arguments, $argumentName) {
94
+            $renderChildrenClosure = function() use ($arguments, $argumentName) {
95 95
                 return $arguments[$argumentName];
96 96
             };
97 97
         } else {
98 98
             $self = clone $this;
99
-            $renderChildrenClosure = function () use ($self) {
99
+            $renderChildrenClosure = function() use ($self) {
100 100
                 return $self->renderChildren();
101 101
             };
102 102
         }
Please login to merge, or discard this patch.
src/View/AbstractTemplateView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
         try {
293 293
             $parsedPartial = $renderingContext->getTemplateParser()->getOrParseAndStoreTemplate(
294 294
                 $templatePaths->getPartialIdentifier($partialName),
295
-                function ($parent, TemplatePaths $paths) use ($partialName) {
295
+                function($parent, TemplatePaths $paths) use ($partialName) {
296 296
                     return $paths->getPartialSource($partialName);
297 297
                 }
298 298
             );
Please login to merge, or discard this patch.
src/Core/ViewHelper/TagBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
     {
177 177
         $this->ignoreEmptyAttributes = $ignoreEmptyAttributes;
178 178
         if ($ignoreEmptyAttributes) {
179
-            $this->attributes = array_filter($this->attributes, function ($item) { return trim((string) $item) !== ''; });
179
+            $this->attributes = array_filter($this->attributes, function($item) { return trim((string) $item) !== ''; });
180 180
         }
181 181
     }
182 182
 
Please login to merge, or discard this patch.
src/Core/Parser/BooleanParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -436,9 +436,9 @@
 block discarded – undo
436 436
                 return $x;
437 437
             }
438 438
             if (mb_strpos($x, '.') !== false) {
439
-                return (float)$x;
439
+                return (float) $x;
440 440
             } else {
441
-                return (int)$x;
441
+                return (int) $x;
442 442
             }
443 443
         }
444 444
 
Please login to merge, or discard this patch.
src/ViewHelpers/IfViewHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,6 +89,6 @@
 block discarded – undo
89 89
      */
90 90
     public static function verdict(array $arguments, RenderingContextInterface $renderingContext)
91 91
     {
92
-        return (bool)$arguments['condition'];
92
+        return (bool) $arguments['condition'];
93 93
     }
94 94
 }
Please login to merge, or discard this patch.
src/Core/Parser/SyntaxTree/ViewHelperNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
                     && $argumentsObjectTree[$argumentName] !== null) {
201 201
                     $argumentsObjectTree[$argumentName] = new BooleanNode($argumentsObjectTree[$argumentName]);
202 202
                 } else {
203
-                    $argumentsObjectTree[$argumentName] = (bool)$argumentsObjectTree[$argumentName];
203
+                    $argumentsObjectTree[$argumentName] = (bool) $argumentsObjectTree[$argumentName];
204 204
                 }
205 205
             }
206 206
         }
Please login to merge, or discard this patch.
src/Core/Parser/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     public const CONTEXT_ROOT = 0;
9 9
     public const CONTEXT_INLINE = 1;
10 10
     public const CONTEXT_TAG = 2;
11
-    public const CONTEXT_ARRAY= 3;
11
+    public const CONTEXT_ARRAY = 3;
12 12
     public const CONTEXT_QUOTED = 4;
13 13
     public const CONTEXT_ATTRIBUTES = 5;
14 14
     public const CONTEXT_DEAD = 6;
Please login to merge, or discard this patch.
src/Core/Parser/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     {
49 49
         $previous = $this->features[$feature];
50 50
         if (is_bool($state) || is_numeric($state) || is_null($state)) {
51
-            $this->features[$feature] = (bool)$state;
51
+            $this->features[$feature] = (bool) $state;
52 52
         } elseif (is_string($state)) {
53 53
             $this->features[$feature] = in_array(strtolower($state), ['on', 'true', 'enabled']);
54 54
         }
Please login to merge, or discard this patch.