Completed
Push — develop ( a83719...a16549 )
by
unknown
07:37
created
module/Auth/src/Auth/Controller/UsersController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @param UserRepository $userRepository
42 42
      */
43
-    public function __construct(UserRepository $userRepository,$formManager,$viewHelper)
43
+    public function __construct(UserRepository $userRepository, $formManager, $viewHelper)
44 44
     {
45 45
         $this->userRepository = $userRepository;
46 46
         $this->formManager = $formManager;
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         }
187 187
 
188 188
         $switcher = $this->plugin('Auth/User/Switcher');
189
-        $success  = $switcher($this->params()->fromQuery('id'), [ 'ref' => urldecode($this->params()->fromQuery('ref')) ]);
189
+        $success  = $switcher($this->params()->fromQuery('id'), ['ref' => urldecode($this->params()->fromQuery('ref'))]);
190 190
 
191 191
         return new JsonModel(['success' => true]);
192 192
     }
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/ManageController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,11 +95,11 @@  discard block
 block discarded – undo
95 95
         /* @var \Auth\Form\UserProfileContainer $userProfileContainer */
96 96
         $userProfileContainer = $this->userProfileContainer;
97 97
         $user = $this->authService->getUser(); /* @var $user \Auth\Entity\User */
98
-        $postProfiles = (array)$this->params()->fromPost('social_profiles');
98
+        $postProfiles = (array) $this->params()->fromPost('social_profiles');
99 99
         $userProfiles = $user->getProfile();
100 100
         $formSocialProfiles = $this->socialProfileForm
101 101
             ->setUseDefaultValidation(true)
102
-            ->setData(['social_profiles' => array_map(function ($array)
102
+            ->setData(['social_profiles' => array_map(function($array)
103 103
             {
104 104
                 return $array['data'];
105 105
             }, $userProfiles)]);
@@ -118,11 +118,11 @@  discard block
 block discarded – undo
118 118
             $form      = $userProfileContainer->getForm($formName);
119 119
             
120 120
             if ($form) {
121
-                $postData  = $form->getOption('use_post_array') ? $_POST : array();
121
+                $postData = $form->getOption('use_post_array') ? $_POST : array();
122 122
                 //@TODO: [ZF3] option use_files_array is false by default
123 123
                 //$filesData = $form->getOption('use_files_array') ? $_FILES : array();
124 124
 	            $filesData = $_FILES;
125
-                $data      = array_merge($postData, $filesData);
125
+                $data = array_merge($postData, $filesData);
126 126
                 $form->setData($data);
127 127
                 
128 128
                 if (!$form->isValid()) {
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
                                 ));
184 184
                             } else {
185 185
                                 $profile = [
186
-                                    'auth' => (array)$authProfile,
186
+                                    'auth' => (array) $authProfile,
187 187
                                     'data' => \Zend\Json\Json::decode($dataProfiles[$network])
188 188
                                 ];
189 189
                                 $user->addProfile($network, $profile);
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                 }
194 194
                 
195 195
                 // keep data in sync & properly decoded
196
-                $formSocialProfiles->setData(['social_profiles' => array_map(function ($array)
196
+                $formSocialProfiles->setData(['social_profiles' => array_map(function($array)
197 197
                 {
198 198
                     return \Zend\Json\Json::decode($array) ?: '';
199 199
                 }, $dataProfiles)]);
Please login to merge, or discard this patch.
module/Auth/src/Auth/Form/Validator/UniqueGroupNameFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $this->options['allowName'] = isset($options['allowName']) ? $options['allowName'] : null;
38 38
     }
39 39
 	
40
-	public function __invoke( ContainerInterface $container, $requestedName, array $options = null )
40
+	public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
41 41
 	{
42 42
 		$auth      = $container->get('AuthenticationService');
43 43
 		$user      = $auth->getUser();
Please login to merge, or discard this patch.
module/Organizations/config/module.config.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
                 ],
14 14
             ],
15 15
             'annotation' => [
16
-                'paths' => [ __DIR__ . '/../src/Organizations/Entity']
16
+                'paths' => [__DIR__.'/../src/Organizations/Entity']
17 17
             ],
18 18
         ],
19 19
         'eventmanager' => [
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         'translation_file_patterns' => [
41 41
             [
42 42
                 'type' => 'gettext',
43
-                'base_dir' => __DIR__ . '/../language',
43
+                'base_dir' => __DIR__.'/../language',
44 44
                 'pattern' => '%s.mo',
45 45
             ],
46 46
         ],
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     'controllers' => [
51 51
         'factories' => [
52
-	        'Organizations/InviteEmployee' => [\Organizations\Controller\InviteEmployeeController::class,'factory'],
52
+	        'Organizations/InviteEmployee' => [\Organizations\Controller\InviteEmployeeController::class, 'factory'],
53 53
             'Organizations/Index' => 'Organizations\Factory\Controller\IndexControllerFactory',
54 54
         ]
55 55
     ],
@@ -65,18 +65,18 @@  discard block
 block discarded – undo
65 65
     'view_manager' => [
66 66
         // Map template to files. Speeds up the lookup through the template stack.
67 67
         'template_map' => [
68
-             'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
69
-             'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
70
-             'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
71
-             'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
72
-             'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
73
-             'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
74
-             'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
75
-             'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
68
+             'organizations/index/edit' => __DIR__.'/../view/organizations/index/form.phtml',
69
+             'organizations/form/employees-fieldset' => __DIR__.'/../view/form/employees-fieldset.phtml',
70
+             'organizations/form/employee-fieldset' => __DIR__.'/../view/form/employee-fieldset.phtml',
71
+             'organizations/form/invite-employee-bar' => __DIR__.'/../view/form/invite-employee-bar.phtml',
72
+             'organizations/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml',
73
+             'organizations/error/invite' => __DIR__.'/../view/error/invite.phtml',
74
+             'organizations/mail/invite-employee' => __DIR__.'/../view/mail/invite-employee.phtml',
75
+             'organizations/form/workflow-fieldset' => __DIR__.'/../view/form/workflow-fieldset.phtml',
76 76
         ],
77 77
         // Where to look for view templates not mapped above
78 78
         'template_path_stack' => [
79
-            __DIR__ . '/../view',
79
+            __DIR__.'/../view',
80 80
         ],
81 81
     ],
82 82
     'form_elements' => [
@@ -146,11 +146,11 @@  discard block
 block discarded – undo
146 146
                 'allow' => [
147 147
                     'Entity/OrganizationImage',
148 148
                     'route/lang/organizations/invite',
149
-                    'Organizations/InviteEmployee' => [ 'accept' ],
149
+                    'Organizations/InviteEmployee' => ['accept'],
150 150
                 ],
151 151
                 'deny' => [
152 152
                     'route/lang/organizations',
153
-                    'Organizations/InviteEmployee' => [ 'invite' ],
153
+                    'Organizations/InviteEmployee' => ['invite'],
154 154
                 ],
155 155
             ],
156 156
             // recruiters are allowed to view their companies
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                 'allow' => [
159 159
                     'route/lang/organizations',
160 160
                     'Organizations/InviteEmployee',
161
-                    'Entity/Organization' => [ 'edit' => 'Organizations/Write' ],
161
+                    'Entity/Organization' => ['edit' => 'Organizations/Write'],
162 162
                 ],
163 163
             ],
164 164
         ],
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
             'organizations' => [
175 175
                 'label' => 'Organizations',
176 176
                 'route' => 'lang/organizations',
177
-                'order' => 65,                             // allows to order the menu items
178
-                'resource' => 'route/lang/organizations',  // if a resource is defined, the acl will be applied.
177
+                'order' => 65, // allows to order the menu items
178
+                'resource' => 'route/lang/organizations', // if a resource is defined, the acl will be applied.
179 179
 
180 180
                 'pages' => [
181 181
                     'list' => [
Please login to merge, or discard this patch.
src/Organizations/Entity/Hydrator/OrganizationHydratorFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 class OrganizationHydratorFactory implements FactoryInterface
19 19
 {
20
-	public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) {
20
+	public function __invoke(ContainerInterface $container, $requestedName, array $options = null) {
21 21
 		$repositoryManager = $container->get('repositories');
22 22
 		$repOrganization = $repositoryManager->get('Organizations/Organization');
23 23
 		$repOrganizationName = $repositoryManager->get('Organizations/OrganizationName');
Please login to merge, or discard this patch.
src/Organizations/Factory/Controller/IndexControllerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
         $viewHelper = $container->get('ViewHelperManager');
34 34
         $translator = $container->get('translator');
35 35
 
36
-        return new IndexController($form, $organizationRepository,$translator,$formManager,$viewHelper);
36
+        return new IndexController($form, $organizationRepository, $translator, $formManager, $viewHelper);
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
src/Organizations/Factory/Form/OrganizationsNameFieldsetFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
 	 * @inheritdoc
31 31
 	 * @return OrganizationsNameFieldset
32 32
 	 */
33
-	public function __invoke( ContainerInterface $container, $requestedName, array $options = null )
33
+	public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
34 34
 	{
35
-		$fieldset = new OrganizationsNameFieldset($requestedName,$options);
35
+		$fieldset = new OrganizationsNameFieldset($requestedName, $options);
36 36
 		
37 37
 		$fieldset->setRepositories($container->get('repositories'));
38 38
 		return $fieldset;
Please login to merge, or discard this patch.
module/Organizations/src/Organizations/Form/OrganizationsNameFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	/**
41 41
 	 * @param RepositoryService $repositories
42 42
 	 */
43
-	public function setRepositories( $repositories )
43
+	public function setRepositories($repositories)
44 44
 	{
45 45
 		$this->repositories = $repositories;
46 46
 	}
Please login to merge, or discard this patch.
module/Organizations/src/Organizations/Mail/EmployeeInvitationFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      * @return void
108 108
      * @throws \InvalidArgumentException
109 109
      */
110
-    public function setCreationOptions(array $options=null)
110
+    public function setCreationOptions(array $options = null)
111 111
     {
112 112
         if (!isset($options['user']) || !$options['user'] instanceof UserInterface) {
113 113
             throw new \InvalidArgumentException('An user interface is required!');
Please login to merge, or discard this patch.