Completed
Push — master ( 94f6b8...a33ec0 )
by John
10:27
created
src/PhpApiRoutingBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\PhpApi\RoutingBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Routing/OpenApiRouteLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\PhpApi\RoutingBundle package.
4 4
  *
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                     $router,
103 103
                     $routerController
104 104
                 );
105
-                $defaults      = [
105
+                $defaults = [
106 106
                     '_controller'               => $controllerKey,
107 107
                     RequestMeta::ATTRIBUTE_URI  => $resource,
108 108
                     RequestMeta::ATTRIBUTE_PATH => $pathItem->getPath(),
Please login to merge, or discard this patch.
src/DependencyInjection/PhpApiRoutingExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\PhpApi\RoutingBundle package.
4 4
  *
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function load(array $configs, ContainerBuilder $container)
25 25
     {
26
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
27 27
         $loader->load('services.yml');
28 28
 
29 29
         $config = $this->processConfiguration(new Configuration(), $configs);
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\PhpApi\RoutingBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Routing/RequestMeta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\PhpApi\RoutingBundle package.
4 4
  *
Please login to merge, or discard this patch.