Completed
Push — develop ( 928e2a...e40e4d )
by Mathias
28:01 queued 20:22
created
module/Jobs/test/JobsTest/Listener/PublisherTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         
111 111
         $this->target = new Publisher($this->serviceManager);
112 112
 
113
-        $staticClassPrefix = '\\' . __CLASS__ . '::';
113
+        $staticClassPrefix = '\\'.__CLASS__.'::';
114 114
 
115 115
         $this->log = $this->getMockBuilder('\Zend\Log\Logger')
116 116
             ->disableOriginalConstructor()
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
         $this->publisher->expects($this->any())
166 166
                               ->method('__set')
167
-                              ->will($this->returnCallback($staticClassPrefix . 'publisherSetter'));
167
+                              ->will($this->returnCallback($staticClassPrefix.'publisherSetter'));
168 168
 
169 169
         $this->htmlAbsPathFilter = $this->getMockBuilder('\Core\Filter\HtmlAbsPathFilter')
170 170
                                     ->disableOriginalConstructor()
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 
173 173
         $this->htmlAbsPathFilter->expects($this->any())
174 174
                               ->method('filter')
175
-                              ->will($this->returnCallback($staticClassPrefix . 'absPathFilter'));
175
+                              ->will($this->returnCallback($staticClassPrefix.'absPathFilter'));
176 176
 
177 177
         $this->filterManager = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager')
178 178
                                      ->disableOriginalConstructor()
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 
219 219
         $this->providerChannel->expects($this->any())
220 220
                               ->method('__get')
221
-                              ->will($this->returnCallback($staticClassPrefix . 'providerChannelGetter'));
221
+                              ->will($this->returnCallback($staticClassPrefix.'providerChannelGetter'));
222 222
 
223 223
         $this->provider->expects($this->any(0))
224 224
                        ->method('__get')
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Listener/GetOrganizationManagersTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
 
200 200
         $actual = $this->target->__invoke($event);
201 201
 
202
-        $this->assertTrue(is_array($actual),'Listener did not return an array!');
202
+        $this->assertTrue(is_array($actual), 'Listener did not return an array!');
203 203
         $this->assertArrayHasKey('status', $actual);
204 204
         $this->assertEquals('disabled', $actual['status']);
205 205
     }
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Acl/WriteAssertionTest.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -65,19 +65,19 @@  discard block
 block discarded – undo
65 65
 
66 66
         $privileges = array('new', 'test', 'edit');
67 67
 
68
-        foreach(array($role, $user) as $testObj)
68
+        foreach (array($role, $user) as $testObj)
69 69
         {
70 70
             // non user is always false?
71
-            foreach($privileges as $p)
71
+            foreach ($privileges as $p)
72 72
             {
73
-                $this->assertFalse((bool)$target->assert($acl, $testObj, null, $p));
73
+                $this->assertFalse((bool) $target->assert($acl, $testObj, null, $p));
74 74
             }
75 75
 
76 76
             // user and wrong privilege is false?
77
-            foreach($privileges as $p)
77
+            foreach ($privileges as $p)
78 78
             {
79 79
                 // Casting null to false is safe here, 'edit' for pair user-privilege tested after
80
-                $this->assertFalse((bool)$target->assert($acl, $testObj, $job, $p));
80
+                $this->assertFalse((bool) $target->assert($acl, $testObj, $job, $p));
81 81
             }
82 82
         }
83 83
 
@@ -117,15 +117,15 @@  discard block
 block discarded – undo
117 117
         //$user->setOrganization($organization);
118 118
 
119 119
         /** Organization without user **/
120
-        $this->assertFalse( $assertion->checkOrganizationPermissions( $user, $job ) );
120
+        $this->assertFalse($assertion->checkOrganizationPermissions($user, $job));
121 121
     }
122 122
 
123 123
     /**
124 124
      * @dataProvider assertParametersWithoutOrganization
125 125
      */
126
-    public function testAssertWithoutOrganisation($input, $expected){
126
+    public function testAssertWithoutOrganisation($input, $expected) {
127 127
 
128
-            $method="assert".($expected?"True":"False");
128
+            $method = "assert".($expected ? "True" : "False");
129 129
 
130 130
             $this->$method(
131 131
                 $this->target->assert(
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 
139 139
     }
140 140
 
141
-    public function assertParametersWithoutOrganization(){
141
+    public function assertParametersWithoutOrganization() {
142 142
 
143 143
         $userId = 1234;
144 144
         $user = new User();
@@ -163,13 +163,13 @@  discard block
 block discarded – undo
163 163
 
164 164
 
165 165
         return [
166
-            [[new Acl(), null, null, null] , false ],
167
-            [[new Acl(), null, null, Permissions::PERMISSION_CHANGE] , false ],
168
-            [[new Acl(), $user, $jobMock, 'edit'] , true ],
166
+            [[new Acl(), null, null, null], false],
167
+            [[new Acl(), null, null, Permissions::PERMISSION_CHANGE], false],
168
+            [[new Acl(), $user, $jobMock, 'edit'], true],
169 169
         ];
170 170
     }
171 171
 
172
-    public function testAssertUserIsOrganizationAdmin(){
172
+    public function testAssertUserIsOrganizationAdmin() {
173 173
 
174 174
         $userId = 1234;
175 175
         $user = new User();
@@ -192,13 +192,13 @@  discard block
 block discarded – undo
192 192
         $this->assertTrue(
193 193
             $this->target->assert(
194 194
                 new Acl(), // acl
195
-                $user,     // role
196
-                $jobMock,  // resource
195
+                $user, // role
196
+                $jobMock, // resource
197 197
                 'edit'     // privilege
198 198
             ));
199 199
     }
200 200
 
201
-    public function testAssertUserIsOwnerOfTheParentOrganization(){
201
+    public function testAssertUserIsOwnerOfTheParentOrganization() {
202 202
 
203 203
         $userId = 1234;
204 204
         $user = new User();
@@ -225,13 +225,13 @@  discard block
 block discarded – undo
225 225
         $this->assertTrue(
226 226
             $this->target->assert(
227 227
                 new Acl(), // acl
228
-                $user,     // role
229
-                $jobMock,  // resource
228
+                $user, // role
229
+                $jobMock, // resource
230 230
                 'edit'     // privilege
231 231
             ));
232 232
     }
233 233
 
234
-    public function testUserIsEmployeeWithJobsChangePermissions(){
234
+    public function testUserIsEmployeeWithJobsChangePermissions() {
235 235
 
236 236
         $userId = 1234;
237 237
         $user = new User();
@@ -265,8 +265,8 @@  discard block
 block discarded – undo
265 265
         $this->assertTrue(
266 266
             $this->target->assert(
267 267
                 new Acl(), // acl
268
-                $user,     // role
269
-                $jobMock,  // resource
268
+                $user, // role
269
+                $jobMock, // resource
270 270
                 'edit'     // privilege
271 271
             ));
272 272
     }
Please login to merge, or discard this patch.
module/Jobs/test/TestConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 $commonModules = include_once __DIR__.'/../../../config/common.modules.php';
3 3
 
4 4
 return array(
5
-    'modules' => array_merge($commonModules,array(
5
+    'modules' => array_merge($commonModules, array(
6 6
         'Core',
7 7
         'Auth',
8 8
         'Jobs',
Please login to merge, or discard this patch.
module/Auth/test/Bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 /** @var array $testConfig */
4
-$testConfig = include __DIR__ . '/TestConfig.php';
4
+$testConfig = include __DIR__.'/TestConfig.php';
5 5
 
6
-require_once __DIR__ . '/../../../test/Bootstrap.php';
6
+require_once __DIR__.'/../../../test/Bootstrap.php';
Please login to merge, or discard this patch.
module/Auth/test/TestConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 return array(
6 6
     // This should be an array of module namespaces used in the application.
7
-    'modules' => array_merge($commonModules,array(
7
+    'modules' => array_merge($commonModules, array(
8 8
         'Core',
9 9
 	    'Auth',
10 10
 	    'Jobs',
Please login to merge, or discard this patch.
Auth/test/AclTest/Assertion/AbstractEventManagerAwareAssertionTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,9 +155,9 @@
 block discarded – undo
155 155
         $self = $this;
156 156
 
157 157
         $events->expects($this->once())->method('triggerUntil')
158
-               ->will($this->returnCallback(function ($callback,$eventName,$event) use ($acl, $role, $resource, $privilege, $self) {
158
+               ->will($this->returnCallback(function($callback, $eventName, $event) use ($acl, $role, $resource, $privilege, $self) {
159 159
                	    $self->assertTrue(is_callable($callback));
160
-	                $self->assertEquals('assert',$eventName);
160
+	                $self->assertEquals('assert', $eventName);
161 161
                     $self->assertSame($acl, $event->getAcl());
162 162
                     $self->assertSame($role, $event->getRole());
163 163
                     $self->assertSame($resource, $event->getResource());
Please login to merge, or discard this patch.
module/Auth/test/AclTest/Assertion/AssertionManagerFactoryTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                  ->willReturn(array());
39 39
 
40 40
         $target = new AssertionManagerFactory();
41
-        $manager = $target->__invoke($services,AssertionManager::class);
41
+        $manager = $target->__invoke($services, AssertionManager::class);
42 42
 
43 43
         $this->assertInstanceOf('\Acl\Assertion\AssertionManager', $manager);
44 44
         //$this->assertFalse($manager->shareByDefault(), 'The managers\' shareByDefault value must be set to FALSE by the factory.');
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 
62 62
         $target = new AssertionManagerFactory();
63 63
 
64
-        $manager = $target->__invoke($services,AssertionManager::class);
64
+        $manager = $target->__invoke($services, AssertionManager::class);
65 65
 
66
-        $this->assertTrue($testResult === $manager->has($testName), 'Expected managers\' has method to return ' . ($testResult ? 'TRUE' : 'FALSE') . ' on ' .$testName);
66
+        $this->assertTrue($testResult === $manager->has($testName), 'Expected managers\' has method to return '.($testResult ? 'TRUE' : 'FALSE').' on '.$testName);
67 67
     }
68 68
 
69 69
     public function provideConfigArrays()
Please login to merge, or discard this patch.
Auth/test/AuthTest/Factory/Controller/RemoveControllerFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,6 +49,6 @@
 block discarded – undo
49 49
             ]));
50 50
         
51 51
         $controllerFactory = new RemoveControllerFactory();
52
-        $this->assertInstanceOf(RemoveController::class, $controllerFactory($serviceLocator,'irrelevant'));
52
+        $this->assertInstanceOf(RemoveController::class, $controllerFactory($serviceLocator, 'irrelevant'));
53 53
     }
54 54
 }
Please login to merge, or discard this patch.