Passed
Branch master (7cf03b)
by Thomas
03:44
created
Block/NewRelicSimpleBlockService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             'height'    => '250px',
37 37
             'width'     => '100%',
38 38
             'template'  => 'EkinoNewRelicBundle:Block:block_core_new_relic.html.twig',
39
-          ));
39
+            ));
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
Block/NewRelicTabsBlockService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             'height'    => '250px',
33 33
             'width'     => '100%',
34 34
             'template'  => 'EkinoNewRelicBundle:Block:block_core_new_relic_tabs.html.twig',
35
-          ));
35
+            ));
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
NewRelic/NewRelicInteractorInterface.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 Ekino New Relic bundle.
Please login to merge, or discard this patch.
NewRelic/BlackholeInteractor.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 Ekino New Relic bundle.
Please login to merge, or discard this patch.
NewRelic/NewRelic.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 Ekino New Relic bundle.
Please login to merge, or discard this patch.
NewRelic/NewRelicInteractor.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 Ekino New Relic bundle.
Please login to merge, or discard this patch.
Tests/TransactionNamingStrategy/ControllerNamingStrategyTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function testControllerAsClosure()
29 29
     {
30 30
         $request = new Request();
31
-        $request->attributes->set('_controller', function () {
31
+        $request->attributes->set('_controller', function() {
32 32
         });
33 33
 
34 34
         $strategy = new ControllerNamingStrategy();
Please login to merge, or discard this patch.
Tests/Listener/CommandListenerTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             new InputOption('foo'),
44 44
             new InputOption('foobar', 'fb', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY),
45 45
             new InputArgument('name', InputArgument::REQUIRED),
46
-         ));
46
+            ));
47 47
 
48 48
         $interactor = $this->getMockBuilder(NewRelicInteractorInterface::class)->getMock();
49 49
         $interactor->expects($this->once())->method('setTransactionName')->with($this->equalTo('test:newrelic'));
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         $listener->onConsoleCommand($event);
66 66
     }
67 67
 
68
-    public function testIgnoreBackgroundJob ()
68
+    public function testIgnoreBackgroundJob()
69 69
     {
70 70
         $interactor = $this->getMockBuilder(NewRelicInteractorInterface::class)->getMock();
71 71
         $interactor->expects($this->never())->method('startTransaction');
Please login to merge, or discard this patch.
Tests/Listener/RequestListenerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $listener->setTransactionName($event);
58 58
     }
59 59
 
60
-    public function testPathIsIgnored ()
60
+    public function testPathIsIgnored()
61 61
     {
62 62
         $interactor = $this->getMockBuilder(NewRelicInteractorInterface::class)->getMock();
63 63
         $interactor->expects($this->once())->method('ignoreTransaction');
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $listener->setIgnoreTransaction($event);
74 74
     }
75 75
 
76
-    public function testRouteIsIgnored ()
76
+    public function testRouteIsIgnored()
77 77
     {
78 78
         $interactor = $this->getMockBuilder(NewRelicInteractorInterface::class)->getMock();
79 79
         $interactor->expects($this->once())->method('ignoreTransaction');
Please login to merge, or discard this patch.