Passed
Branch master (7cf03b)
by Thomas
03:44
created
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 1 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.
Tests/DependencyInjection/ConfigurationTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class ConfigurationTest extends TestCase
11 11
 {
12
-    public function testIgnoredRoutes ()
12
+    public function testIgnoredRoutes()
13 13
     {
14 14
         $configuration = new Configuration();
15 15
         $rootNode = $configuration->getConfigTreeBuilder()
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $this->assertEquals(array('ignored_route1', 'ignored_route2'), $ignoredRoutesNode->merge(array('ignored_route1'), array('ignored_route2')));
30 30
     }
31 31
 
32
-    public function testIgnoredPaths ()
32
+    public function testIgnoredPaths()
33 33
     {
34 34
         $configuration = new Configuration();
35 35
         $rootNode = $configuration->getConfigTreeBuilder()
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $this->assertEquals(array('/ignored/path1', '/ignored/path2'), $ignoredPathsNode->merge(array('/ignored/path1'), array('/ignored/path2')));
50 50
     }
51 51
 
52
-    public function testIgnoredCommands ()
52
+    public function testIgnoredCommands()
53 53
     {
54 54
         $configuration = new Configuration();
55 55
         $rootNode = $configuration->getConfigTreeBuilder()
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $this->assertInternalType('array', $config['deployment_names']);
86 86
     }
87 87
 
88
-    public static function ignoredRoutesProvider ()
88
+    public static function ignoredRoutesProvider()
89 89
     {
90 90
         return array(
91 91
             array('single_ignored_route', array('single_ignored_route')),
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         );
95 95
     }
96 96
 
97
-    public static function ignoredPathsProvider ()
97
+    public static function ignoredPathsProvider()
98 98
     {
99 99
         return array(
100 100
             array('/single/ignored/path', array('/single/ignored/path')),
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         );
104 104
     }
105 105
 
106
-    public static function ignoredCommandsProvider ()
106
+    public static function ignoredCommandsProvider()
107 107
     {
108 108
         return array(
109 109
             array('single:ignored:command', array('single:ignored:command')),
Please login to merge, or discard this patch.
Tests/DependencyInjection/EkinoNewRelicExtensionTest.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.