@@ -39,7 +39,7 @@ |
||
| 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 | } |
@@ -275,7 +275,7 @@ |
||
| 275 | 275 | { |
| 276 | 276 | $parsedPartial = $this->baseRenderingContext->getTemplateParser()->getOrParseAndStoreTemplate( |
| 277 | 277 | $this->baseRenderingContext->getTemplatePaths()->getPartialIdentifier($partialName), |
| 278 | - function ($parent, TemplatePaths $paths) use ($partialName) { |
|
| 278 | + function($parent, TemplatePaths $paths) use ($partialName) { |
|
| 279 | 279 | return $paths->getPartialSource($partialName); |
| 280 | 280 | } |
| 281 | 281 | ); |