Completed
Push — master ( e3dddb...97971f )
by Daniel
07:06 queued 04:32
created
example/web/app_dev.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Symfony\Component\Debug\Debug;
5 5
 use Symfony\Component\HttpFoundation\Request;
6 6
 
7
-require __DIR__ . '/../../vendor/autoload.php';
7
+require __DIR__.'/../../vendor/autoload.php';
8 8
 
9 9
 Debug::enable();
10 10
 require_once __DIR__.'/../app/AppKernel.php';
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/ObjectAgentPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
             $attributes = $attributes[0];
25 25
             if (!isset($attributes['alias'])) {
26 26
                 throw new InvalidArgumentException(sprintf(
27
-                    $this->context . ' "%s" has no "alias" attribute in its tag',
27
+                    $this->context.' "%s" has no "alias" attribute in its tag',
28 28
                     $serviceId
29 29
                 ));
30 30
             }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             ));
42 42
         }
43 43
 
44
-        $agents = array_filter($agents, function ($key) use ($enabledAgents) {
44
+        $agents = array_filter($agents, function($key) use ($enabledAgents) {
45 45
             return in_array($key, $enabledAgents);
46 46
         }, ARRAY_FILTER_USE_KEY);
47 47
 
Please login to merge, or discard this patch.