Completed
Push — master ( de482a...d85a1f )
by Kamil
10s
created
src/ServiceContainer/SymfonyExtension.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use FriendsOfBehat\SymfonyExtension\Driver\Factory\SymfonyDriverFactory;
22 22
 use FriendsOfBehat\SymfonyExtension\Listener\KernelRebooter;
23 23
 use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
24
-use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
25 24
 use Symfony\Component\DependencyInjection\Container;
26 25
 use Symfony\Component\DependencyInjection\ContainerBuilder;
27 26
 use Symfony\Component\DependencyInjection\Definition;
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the SymfonyExtension package.
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
      *
256 256
      * @return string|null
257 257
      */
258
-    private function getKernelFile(string $basePath, string $kernelPath): ?string
258
+    private function getKernelFile(string $basePath, string $kernelPath): ? string
259 259
     {
260 260
         $possibleFiles = [
261 261
             sprintf('%s/%s', $basePath, $kernelPath),
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      *
278 278
      * @throws \DomainException
279 279
      */
280
-    private function requireKernelBootstrapFile(string $basePath, ?string $bootstrapPath): void
280
+    private function requireKernelBootstrapFile(string $basePath, ? string $bootstrapPath) : void
281 281
     {
282 282
         if (null === $bootstrapPath) {
283 283
             return;
Please login to merge, or discard this patch.
src/Driver/SymfonyDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the SymfonyExtension package.
Please login to merge, or discard this patch.
src/Driver/Factory/SymfonyDriverFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the SymfonyExtension package.
Please login to merge, or discard this patch.
src/Listener/KernelRebooter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the SymfonyExtension package.
Please login to merge, or discard this patch.