Completed
Push — develop ( 928e2a...e40e4d )
by Mathias
28:01 queued 20:22
created
test/OrganizationsTest/Factory/Form/EmployeesFieldsetFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
                    ->with('appendFile', array('modules/Organizations/js/organizations.employees.js'))
49 49
                    ->willReturn(null);
50 50
 
51
-        $basepath   = $this->getMockBuilder('\Zend\View\Helper\BasePath')->disableOriginalConstructor()->getMock();
51
+        $basepath = $this->getMockBuilder('\Zend\View\Helper\BasePath')->disableOriginalConstructor()->getMock();
52 52
         $basepath->expects($this->once())
53 53
                  ->method('__invoke')
54 54
                  ->with('modules/Organizations/js/organizations.employees.js')
Please login to merge, or discard this patch.
test/OrganizationsTest/Factory/Form/EmployeeFieldsetFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $services->expects($this->once())
54 54
                  ->method('get')->with('repositories')->willReturn($repos);
55 55
 	    
56
-        $fieldset = $target->__invoke($services,'irrelevant');
56
+        $fieldset = $target->__invoke($services, 'irrelevant');
57 57
 
58 58
         $this->assertInstanceOf('\Organizations\Form\EmployeeFieldset', $fieldset);
59 59
 
Please login to merge, or discard this patch.
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.