Passed
Push — develop ( 0de0ee...1049f6 )
by Mathias
107:24 queued 99:32
created
test/OrganizationsTest/Factory/ImageFileCache/ODMListenerFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             ]));
39 39
         
40 40
         $factory = new ODMListenerFactory();
41
-        $listener = $factory->__invoke($serviceLocator,'irrelevant');
41
+        $listener = $factory->__invoke($serviceLocator, 'irrelevant');
42 42
         $this->assertInstanceOf(ODMListener::class, $listener);
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
test/OrganizationsTest/Factory/ImageFileCache/ManagerFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             ]));
35 35
         
36 36
         $factory = new ManagerFactory();
37
-        $listener = $factory->__invoke($serviceLocator,'irrelevant');
37
+        $listener = $factory->__invoke($serviceLocator, 'irrelevant');
38 38
         $this->assertInstanceOf(Manager::class, $listener);
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
OrganizationsTest/Factory/ImageFileCache/ApplicationListenerFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             ]));
52 52
         
53 53
         $factory = new ApplicationListenerFactory();
54
-        $listener = $factory->__invoke($serviceLocator,'irrelevant');
54
+        $listener = $factory->__invoke($serviceLocator, 'irrelevant');
55 55
         $this->assertInstanceOf(ApplicationListener::class, $listener);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
test/OrganizationsTest/Auth/Dependency/EmployeeListListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
         $view = $this->getMockBuilder(View::class)
91 91
             ->getMock();
92 92
         
93
-        $actual = $this->listListener->getItems($user, $view , 10);
93
+        $actual = $this->listListener->getItems($user, $view, 10);
94 94
         
95 95
         $this->assertInternalType('array', $actual);
96 96
         $this->assertCount($expected, $actual);
Please login to merge, or discard this patch.
Organizations/test/OrganizationsTest/Controller/ProfileControllerTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $pluginManager->expects($this->any())
104 104
             ->method('get')
105 105
             ->willReturnMap([
106
-                ['params',null,$params]
106
+                ['params', null, $params]
107 107
             ])
108 108
         ;
109 109
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         $plugins->expects($this->any())
127 127
             ->method('get')
128 128
             ->willReturnMap([
129
-                ['params',null,$params]
129
+                ['params', null, $params]
130 130
             ])
131 131
         ;
132 132
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $plugins->expects($this->any())
151 151
             ->method('get')
152 152
             ->willReturnMap([
153
-                ['params',null,$params]
153
+                ['params', null, $params]
154 154
             ])
155 155
         ;
156 156
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $pluginManager->expects($this->any())
183 183
             ->method('get')
184 184
             ->willReturnMap([
185
-                ['params',null,$params]
185
+                ['params', null, $params]
186 186
             ])
187 187
         ;
188 188
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
         $pluginManager->expects($this->any())
218 218
             ->method('get')
219 219
             ->willReturnMap([
220
-                ['params',null,$params]
220
+                ['params', null, $params]
221 221
             ])
222 222
         ;
223 223
 
Please login to merge, or discard this patch.
test/OrganizationsTest/Controller/Plugin/InvitationHandlerTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
                                              ->disableOriginalConstructor()->getMock();
65 65
         }
66 66
         if (in_array('mailerPlugin', $mocks)) {
67
-            $this->mailerPluginMock   = $this->getMockBuilder('\Core\Controller\Plugin\Mailer')
67
+            $this->mailerPluginMock = $this->getMockBuilder('\Core\Controller\Plugin\Mailer')
68 68
                                          ->disableOriginalConstructor()->getMock();
69 69
         }
70 70
 
71 71
         if ($inject) {
72 72
             foreach ($mocks as $key) {
73
-                $setter = 'set' . $key;
74
-                $this->target->$setter($this->{$key . 'Mock'});
73
+                $setter = 'set'.$key;
74
+                $this->target->$setter($this->{$key.'Mock'});
75 75
             }
76 76
         }
77 77
     }
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
     {
107 107
         $this->setupMocks($mockKey);
108 108
 
109
-        $setter = 'set' . ucfirst($mockKey);
110
-        $getter = 'get' . ucfirst($mockKey);
111
-        $value  = $this->{$mockKey . 'Mock'};
109
+        $setter = 'set'.ucfirst($mockKey);
110
+        $getter = 'get'.ucfirst($mockKey);
111
+        $value  = $this->{$mockKey.'Mock'};
112 112
 
113 113
         $this->assertSame($this->target, $this->target->$setter($value), 'Fluent interface broken!');
114 114
         $this->assertSame($value, $this->target->$getter());
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function testGetterThrowExceptionIfDependencyMissing($getterName)
124 124
     {
125
-        $getter = "get" . $getterName;
125
+        $getter = "get".$getterName;
126 126
 
127 127
         $this->target->$getter();
128 128
     }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             'message' => $message,
143 143
         );
144 144
 
145
-        foreach (array($email, null, '', 0, array()) as $testEmail)  {
145
+        foreach (array($email, null, '', 0, array()) as $testEmail) {
146 146
             $result = $this->target->process($testEmail);
147 147
 
148 148
             $this->assertEquals($expected, $result);
Please login to merge, or discard this patch.
test/OrganizationsTest/Controller/Plugin/AcceptInvitationHandlerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
                 continue;
135 135
             }
136 136
 
137
-            $this->fail('Expected exception was not thrown for "' . $method . '"');
137
+            $this->fail('Expected exception was not thrown for "'.$method.'"');
138 138
         }
139 139
     }
140 140
 
Please login to merge, or discard this patch.
test/OrganizationsTest/Controller/InviteEmployeeControllerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         return isset($this->pluginsMockMap[$name]) ? $this->pluginsMockMap[$name] : null;
95 95
     }
96 96
 
97
-    public function retrieveQueryParam($name, $default=null)
97
+    public function retrieveQueryParam($name, $default = null)
98 98
     {
99 99
         return isset($this->queryParams[$name]) ? $this->queryParams[$name] : $default;
100 100
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
     private function setupOrganizationEntityRetrievalMocks($name)
129 129
     {
130
-        $id = $name. "Id";
130
+        $id = $name."Id";
131 131
         $organization = new Organization();
132 132
         $organization->setOrganizationName(new OrganizationName($name));
133 133
 
Please login to merge, or discard this patch.
test/OrganizationsTest/Repository/Filter/PaginationQueryFactoryTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,16 +35,16 @@
 block discarded – undo
35 35
         $container->expects($this->any())
36 36
             ->method('get')
37 37
             ->willReturnMap([
38
-                ['Core/RepositoryService',$container],
39
-                ['Jobs/Job',$jobRepository],
40
-                ['AuthenticationService',$auth]
38
+                ['Core/RepositoryService', $container],
39
+                ['Jobs/Job', $jobRepository],
40
+                ['AuthenticationService', $auth]
41 41
             ])
42 42
         ;
43 43
 
44
-        $factory = new PaginationQueryFactory($auth,$jobRepository);
44
+        $factory = new PaginationQueryFactory($auth, $jobRepository);
45 45
         $this->assertInstanceOf(
46 46
             PaginationQuery::class,
47
-            $factory($container,'some-name')
47
+            $factory($container, 'some-name')
48 48
         );
49 49
     }
50 50
 }
Please login to merge, or discard this patch.