Completed
Push — master ( 8d2d32...17c140 )
by Tobias
06:30
created
Tests/Listener/CommandListenerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             new InputOption('foo'),
43 43
             new InputOption('foobar', 'fb', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY),
44 44
             new InputArgument('name', InputArgument::REQUIRED),
45
-         ]);
45
+            ]);
46 46
 
47 47
         $interactor = $this->getMockBuilder(NewRelicInteractorInterface::class)->getMock();
48 48
         $interactor->expects($this->once())->method('setTransactionName')->with($this->equalTo('test:newrelic'));
Please login to merge, or discard this patch.
Listener/RequestListener.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
     {
44 44
         return [
45 45
             KernelEvents::REQUEST => [
46
-                 ['setApplicationName', 255],
47
-                 ['setIgnoreTransaction', 31],
48
-                 ['setTransactionName', -10],
46
+                    ['setApplicationName', 255],
47
+                    ['setIgnoreTransaction', 31],
48
+                    ['setTransactionName', -10],
49 49
             ],
50 50
         ];
51 51
     }
Please login to merge, or discard this patch.