@@ -38,7 +38,7 @@ |
||
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 | } |
@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -51,7 +51,7 @@ |
||
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 | } |
@@ -90,7 +90,7 @@ |
||
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); |
@@ -103,7 +103,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -64,14 +64,14 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -134,7 +134,7 @@ |
||
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 |
@@ -94,7 +94,7 @@ discard block |
||
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 |
||
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 |
@@ -35,16 +35,16 @@ |
||
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 | } |