@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Fousky\JSBlockBundle; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Fousky\JSBlockBundle\Twig\TokenParser; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Fousky\JSBlockBundle\Twig\Node; |
4 | 4 |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Fousky\JSBlockBundle\DependencyInjection; |
4 | 4 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function load(array $configs, ContainerBuilder $container) |
13 | 13 | { |
14 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
14 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
15 | 15 | $loader->load('services.yml'); |
16 | 16 | } |
17 | 17 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace Fousky\JSBlockBundle\Twig; |
4 | 4 | |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | |
23 | 23 | public function render(): string |
24 | 24 | { |
25 | - return implode("\n ", $this->collected)."\n"; |
|
25 | + return implode("\n ", $this->collected) . "\n"; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function start(): void |