Completed
Push — master ( 53ee20...e1a0b2 )
by Christian
02:17
created
src/Core/ViewHelper/Traits/CompileWithContentArgumentAndRenderStatic.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use TYPO3Fluid\Fluid\Core\Compiler\ViewHelperCompiler;
6 6
 use TYPO3Fluid\Fluid\Core\Exception;
7 7
 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
8
-use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
9 8
 
10 9
 /**
11 10
  * Class CompilableWithContentArgumentAndRenderStatic
Please login to merge, or discard this 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/TemplatePaths.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -395,7 +395,7 @@
 block discarded – undo
395 395
      * Sanitize a path, ensuring it is absolute and
396 396
      * if a directory, suffixed by a trailing slash.
397 397
      *
398
-     * @param string|array $path
398
+     * @param string $path
399 399
      * @return string
400 400
      */
401 401
     protected function sanitizePath($path)
Please login to merge, or discard this patch.
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/ViewHelpers/ForViewHelper.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
  * See LICENSE.txt that was shipped with this package.
7 7
  */
8 8
 
9
-use TYPO3Fluid\Fluid\Core\Compiler\TemplateCompiler;
10
-use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
11 9
 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
12 10
 use TYPO3Fluid\Fluid\Core\ViewHelper;
13 11
 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
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
@@ -284,7 +284,7 @@
 block discarded – undo
284 284
         try {
285 285
             $parsedPartial = $this->baseRenderingContext->getTemplateParser()->getOrParseAndStoreTemplate(
286 286
                 $templatePaths->getPartialIdentifier($partialName),
287
-                function ($parent, TemplatePaths $paths) use ($partialName) {
287
+                function($parent, TemplatePaths $paths) use ($partialName) {
288 288
                     return $paths->getPartialSource($partialName);
289 289
                 }
290 290
             );
Please login to merge, or discard this patch.