Completed
Push — develop ( 33eed9...a73e2c )
by Carsten
21s queued 14s
created
Organizations/test/OrganizationsTest/Mail/EmployeeInvitationFactoryTest.php 2 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
 
118 118
         $orgRep = $this->getMockBuilder('\Organizations\Repository\Organization')->disableOriginalConstructor()->getMock();
119 119
         $orgRep->expects($this->exactly(2))
120
-               ->method('findByUser')
121
-               ->withConsecutive(array('testOwner'), array('testUser'))
122
-               ->will($this->onConsecutiveCalls($ownerOrg, $userOrg));
120
+                ->method('findByUser')
121
+                ->withConsecutive(array('testOwner'), array('testUser'))
122
+                ->will($this->onConsecutiveCalls($ownerOrg, $userOrg));
123 123
 
124 124
 
125 125
         $ownerOrgRef = new OrganizationReference('testOwner', $orgRep);
@@ -136,25 +136,25 @@  discard block
 block discarded – undo
136 136
 
137 137
         $router = $this->getMockForAbstractClass(RouteStackInterface::class);
138 138
         $router->expects($this->once())
139
-               ->method('assemble')
140
-               ->with(
141
-                   array('action' => 'accept'),
142
-                   array('name' => 'lang/organizations/invite',
139
+                ->method('assemble')
140
+                ->with(
141
+                    array('action' => 'accept'),
142
+                    array('name' => 'lang/organizations/invite',
143 143
                             'query' => array('token' => $options['token'], 'organization' => $ownerOrg->getId()))
144
-               )
145
-               ->willReturn('testUrl');
144
+                )
145
+                ->willReturn('testUrl');
146 146
 
147 147
         $mailService = $this->getMockBuilder('\Core\Mail\MailService')->disableOriginalConstructor()->getMock();
148 148
 
149 149
         $services = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager')->disableOriginalConstructor()->getMock();
150 150
 
151 151
         $services->expects($this->exactly(3))
152
-                 ->method('get')
153
-                 ->withConsecutive(
154
-                     array('AuthenticationService'),
155
-                     array('Router'),
156
-                     ['Core/MailService']
157
-                 )->will($this->onConsecutiveCalls($authService, $router, $mailService));
152
+                    ->method('get')
153
+                    ->withConsecutive(
154
+                        array('AuthenticationService'),
155
+                        array('Router'),
156
+                        ['Core/MailService']
157
+                    )->will($this->onConsecutiveCalls($authService, $router, $mailService));
158 158
 
159 159
         $mailMock = new HTMLTemplateMessage(new \Zend\ServiceManager\ServiceManager());
160 160
         $translator = $this->getMockBuilder('\Zend\I18n\Translator\Translator')->disableOriginalConstructor()->getMock();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     {
61 61
         $user = $this->getMockForAbstractClass('\Auth\Entity\UserInterface');
62 62
 
63
-        $makeArray = function ($options) use ($user) {
63
+        $makeArray = function($options) use ($user) {
64 64
             $options['user'] = $user;
65 65
             return array($options, array_merge(array('user' => $user, 'token' => false, 'template' => 'organizations/mail/invite-employee'), $options));
66 66
         };
Please login to merge, or discard this patch.
Organizations/test/OrganizationsTest/Auth/Dependency/ListListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             ->getMock();
73 73
         $translator->expects($this->once())
74 74
             ->method('translate')
75
-            ->with($this->callback(function ($string) {
75
+            ->with($this->callback(function($string) {
76 76
                 return is_string($string);
77 77
             }))
78 78
             ->willReturn($expected);
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
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             ->getMock();
64 64
         $translator->expects($this->once())
65 65
             ->method('translate')
66
-            ->with($this->callback(function ($string) {
66
+            ->with($this->callback(function($string) {
67 67
                 return is_string($string);
68 68
             }))
69 69
             ->willReturn($expected);
Please login to merge, or discard this patch.
Organizations/test/OrganizationsTest/Entity/OrganizationImageTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
     public function testGetUriWithAndWithoutFilename()
57 57
     {
58
-        $filename="My File.png";
58
+        $filename = "My File.png";
59 59
         $this->target->setName($filename);
60 60
         $this->assertSame($this->target->getUri(), '/file/Organizations.OrganizationImage/'.$this->target->getId().'/'.urlencode($this->target->getName()));
61 61
         $this->target->setName(null);
Please login to merge, or discard this patch.
Organizations/test/OrganizationsTest/Entity/OrganizationReferenceTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             $args = array($args);
116 116
         }
117 117
 
118
-        for ($i=0,$c=count($func); $i<$c; $i+=1) {
118
+        for ($i = 0, $c = count($func); $i < $c; $i += 1) {
119 119
             $f = $func[$i];
120 120
             $a = $args[$i];
121 121
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             $expected = array($expected);
145 145
         }
146 146
 
147
-        for ($i=0, $c=count($func); $i<$c; $i+=1) {
147
+        for ($i = 0, $c = count($func); $i < $c; $i += 1) {
148 148
             $f = $func[$i];
149 149
             $a = $args[$i];
150 150
             $e = $expected[$i];
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         $perms = new Permissions();
177 177
         $contact = new OrganizationContact();
178 178
         $image = new OrganizationImage();
179
-        $externalId='myReference';
179
+        $externalId = 'myReference';
180 180
         $template = new Template();
181 181
         $template->setLabelBenefits('These are your Benefits');
182 182
         $workflowSettings = new WorkflowSettings();
Please login to merge, or discard this patch.
module/Organizations/test/OrganizationsTest/Entity/OrganizationTest.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -61,74 +61,74 @@
 block discarded – undo
61 61
         $parent = new Organization();
62 62
         $permissions = $this->createMock(Permissions::class);
63 63
         return [
64
-            [ 'externalId', '1234' ],
65
-            [ 'name', [ 'value'=> '', 'ignore_setter' => true] ],
66
-            [ 'name', [ 'pre' => 'setupGetName', 'value' => 'Test', 'ignore_setter' => true] ],
67
-            [ 'organizationName' , [
68
-                '@value' => [ '\Organizations\Entity\OrganizationName', [ 'Test' ] ],
64
+            ['externalId', '1234'],
65
+            ['name', ['value'=> '', 'ignore_setter' => true]],
66
+            ['name', ['pre' => 'setupGetName', 'value' => 'Test', 'ignore_setter' => true]],
67
+            ['organizationName', [
68
+                '@value' => ['\Organizations\Entity\OrganizationName', ['Test']],
69 69
                 'post' => 'organizationNamePostAsserts'
70 70
             ]],
71
-            [ 'organizationName', [
71
+            ['organizationName', [
72 72
                 'pre' => 'setupOrganizationName',
73
-                '@value' => [ '\Organizations\Entity\OrganizationName', [ 'TestNew' ] ],
73
+                '@value' => ['\Organizations\Entity\OrganizationName', ['TestNew']],
74 74
                 'post' => 'assertOrganizationNameCounter'
75 75
             ]],
76
-            [ 'permissions',[
76
+            ['permissions', [
77 77
                 'value' => $permissions
78 78
             ]],
79
-            [ 'image',[
79
+            ['image', [
80 80
                 'value' => new OrganizationImage()
81 81
             ]],
82
-            [ 'images',[
82
+            ['images', [
83 83
                 'value' => new ImageSet(),
84 84
             ]],
85
-            [ 'isDraft',[
85
+            ['isDraft', [
86 86
                 'default' => false,
87 87
                 'value' => true,
88 88
                 'getter_method' => 'isDraft'
89 89
             ]],
90
-            [ 'contact',[
90
+            ['contact', [
91 91
                 'value' => new OrganizationContact()
92 92
             ]],
93
-            [ 'description',[
93
+            ['description', [
94 94
                 'default' => null,
95 95
                 'value' => 'Some Description'
96 96
             ]],
97
-            [ 'parent',[
97
+            ['parent', [
98 98
                 'default' => null,
99 99
                 'value' => $parent,
100 100
             ]],
101
-            [ 'hiringOrganizations',[
101
+            ['hiringOrganizations', [
102 102
                 'default' => null,
103 103
             ]],
104 104
 
105
-            [ 'employees',[
105
+            ['employees', [
106 106
                 '@default' => ArrayCollection::class,
107 107
                 'value' => new ArrayCollection()
108 108
             ]],
109 109
 
110
-            [ 'jobs',[
110
+            ['jobs', [
111 111
                 'default' => null,
112 112
             ]],
113 113
 
114
-            [ 'user',[
114
+            ['user', [
115 115
                 'value' => new User()
116 116
             ]],
117 117
 
118
-            [ 'template',[
118
+            ['template', [
119 119
                 'value' => new Template(),
120 120
             ]],
121 121
 
122
-            [ 'workflowSettings',[
122
+            ['workflowSettings', [
123 123
                 'value' => new WorkflowSettings(),
124 124
             ]],
125 125
 
126
-            [ 'profileSetting',[
126
+            ['profileSetting', [
127 127
                 'value' => Organization::PROFILE_ALWAYS_ENABLE,
128 128
                 'default' => null,
129 129
             ]],
130 130
 
131
-            [ 'hydrator', [
131
+            ['hydrator', [
132 132
                 '@default' => EntityHydrator::class
133 133
             ]]
134 134
 
Please login to merge, or discard this patch.
module/Organizations/test/OrganizationsTest/Form/EmployeeFieldsetTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -104,15 +104,15 @@
 block discarded – undo
104 104
                 ->getMock();
105 105
 
106 106
         $target->expects($this->exactly(4))
107
-               ->method('add')
108
-               ->withConsecutive(
109
-                   array($expectAdd1),
110
-                   array($expectAdd2),
111
-                   array($expectAdd3),
112
-                   array($expectAdd4)
107
+                ->method('add')
108
+                ->withConsecutive(
109
+                    array($expectAdd1),
110
+                    array($expectAdd2),
111
+                    array($expectAdd3),
112
+                    array($expectAdd4)
113 113
 
114 114
 
115
-               );
115
+                );
116 116
 
117 117
         $target->init();
118 118
     }
Please login to merge, or discard this patch.
module/Organizations/test/OrganizationsTest/Form/EmployeesFieldsetTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,11 +88,11 @@
 block discarded – undo
88 88
                 ->getMock();
89 89
 
90 90
         $target->expects($this->exactly(2))
91
-               ->method('add')
92
-               ->withConsecutive(
93
-                   array($expectAdd1),
94
-                   array($expectAdd2)
95
-               );
91
+                ->method('add')
92
+                ->withConsecutive(
93
+                    array($expectAdd1),
94
+                    array($expectAdd2)
95
+                );
96 96
 
97 97
         $target->init();
98 98
         $this->assertEquals('employees', $target->getName());
Please login to merge, or discard this patch.
test/OrganizationsTest/Paginator/ListJobPaginatorFactoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
         $container->expects($this->any())
42 42
             ->method('get')
43 43
             ->willReturnMap([
44
-                ['FilterManager',$filterManager],
45
-                ['repositories',$repositories]
44
+                ['FilterManager', $filterManager],
45
+                ['repositories', $repositories]
46 46
             ])
47 47
         ;
48 48
 
Please login to merge, or discard this patch.