Completed
Pull Request — develop (#346)
by ANTHONIUS
06:57
created
module/Install/src/Form/Installation.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -28,52 +28,52 @@  discard block
 block discarded – undo
28 28
 
29 29
         $this->setAttributes(
30 30
             array(
31
-                                 'method' => 'post',
32
-                             )
31
+                                    'method' => 'post',
32
+                                )
33 33
         );
34 34
 
35 35
         $this->add(
36 36
             array(
37
-                       'type'       => 'Text',
38
-                       'name'       => 'db_conn',
39
-                       'options'    => array(
40
-                           'label' => /* @translate */ 'Database connection string',
41
-                       ),
42
-                       'attributes' => array(
43
-                           'placeholder' => 'mongodb://localhost:27017/YAWIK',
44
-                       ),
37
+                        'type'       => 'Text',
38
+                        'name'       => 'db_conn',
39
+                        'options'    => array(
40
+                            'label' => /* @translate */ 'Database connection string',
41
+                        ),
42
+                        'attributes' => array(
43
+                            'placeholder' => 'mongodb://localhost:27017/YAWIK',
44
+                        ),
45 45
 
46
-                   )
46
+                    )
47 47
         );
48 48
 
49 49
         $this->add(
50 50
             array(
51
-                       'type'    => 'Text',
52
-                       'name'    => 'username',
53
-                       'options' => array(
54
-                           'label' => /* @translate */ 'Initial user name',
55
-                       ),
56
-                   )
51
+                        'type'    => 'Text',
52
+                        'name'    => 'username',
53
+                        'options' => array(
54
+                            'label' => /* @translate */ 'Initial user name',
55
+                        ),
56
+                    )
57 57
         );
58 58
 
59 59
         $this->add(
60 60
             array(
61
-                       'type'    => 'Password',
62
-                       'name'    => 'password',
63
-                       'options' => array(
64
-                           'label' => /* @translate */ 'Password',
65
-                       ),
66
-                   )
61
+                        'type'    => 'Password',
62
+                        'name'    => 'password',
63
+                        'options' => array(
64
+                            'label' => /* @translate */ 'Password',
65
+                        ),
66
+                    )
67 67
         );
68 68
 
69 69
         $this->add(
70 70
             array(
71
-                       'type' => 'Text',
72
-                       'name' => 'email',
73
-                       'options' => array(
74
-                           'label' => /* @translate */ 'Email address for system messages',
75
-                       ),
76
-                   )
71
+                        'type' => 'Text',
72
+                        'name' => 'email',
73
+                        'options' => array(
74
+                            'label' => /* @translate */ 'Email address for system messages',
75
+                        ),
76
+                    )
77 77
         );
78 78
     }
79 79
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 ),
89 89
                 'validators'        => array(
90 90
                     array('name' => 'Install/ConnectionString',
91
-                          'break_chain_on_failure' => true),
91
+                            'break_chain_on_failure' => true),
92 92
                     array('name' => 'Install/Connection'),
93 93
                 ),
94 94
             ),
Please login to merge, or discard this patch.
module/Install/src/Controller/Index.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $routeMatch->setParam('action', $p);
43 43
             $response = $this->getResponse();
44 44
             $response->getHeaders()
45
-                     ->addHeaderLine('Content-Type', 'application/json')
46
-                     ->addHeaderLine('Content-Encoding', 'utf8');
45
+                        ->addHeaderLine('Content-Type', 'application/json')
46
+                        ->addHeaderLine('Content-Encoding', 'utf8');
47 47
         }
48 48
     }
49 49
 
@@ -60,10 +60,10 @@  discard block
 block discarded – undo
60 60
 
61 61
         return $this->createViewModel(
62 62
             array(
63
-                                          'prerequisites' => $prereqs,
64
-                                          'form'          => $form,
65
-                                          'lang'          => $this->params('lang'),
66
-                                      )
63
+                                            'prerequisites' => $prereqs,
64
+                                            'form'          => $form,
65
+                                            'lang'          => $this->params('lang'),
66
+                                        )
67 67
         );
68 68
     }
69 69
 
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
         if (!$form->isValid()) {
96 96
             return $this->createJsonResponse(
97 97
                 array(
98
-                                                 'ok'     => false,
99
-                                                 'errors' => $form->getMessages(),
100
-                                             )
98
+                                                    'ok'     => false,
99
+                                                    'errors' => $form->getMessages(),
100
+                                                )
101 101
             );
102 102
         }
103 103
 
Please login to merge, or discard this patch.
module/Applications/config/module.config.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -10,20 +10,20 @@  discard block
 block discarded – undo
10 10
 
11 11
 return array(
12 12
     'doctrine' => array(
13
-       'driver' => array(
13
+        'driver' => array(
14 14
             'odm_default' => array(
15 15
                 'drivers' => array(
16 16
                     'Applications\Entity' => 'annotation',
17 17
                 ),
18 18
             ),
19 19
             'annotation' => array(
20
-               /*
20
+                /*
21 21
                 * All drivers (except DriverChain) require paths to work on. You
22 22
                 * may set this value as a string (for a single path) or an array
23 23
                 * for multiple paths.
24 24
                 * example https://github.com/doctrine/DoctrineORMModule
25 25
                 */
26
-               'paths' => array( __DIR__ . '/../src/Applications/Entity')
26
+                'paths' => array( __DIR__ . '/../src/Applications/Entity')
27 27
             ),
28 28
         ),
29 29
         'eventmanager' => array(
@@ -63,16 +63,16 @@  discard block
 block discarded – undo
63 63
             'Applications/Options/ModuleOptions' => 'Applications\Options\ModuleOptions',
64 64
         ),
65 65
         'factories' => array(
66
-           'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
67
-           'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
68
-           'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
69
-           'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
70
-           'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
71
-           'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
72
-           'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory'
66
+            'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
67
+            'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
68
+            'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
69
+            'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
70
+            'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
71
+            'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
72
+            'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory'
73 73
         ),
74 74
         'aliases' => [
75
-           'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
75
+            'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
76 76
         ]
77 77
     ),
78 78
     'controllers' => array(
@@ -170,25 +170,25 @@  discard block
 block discarded – undo
170 170
     ),
171 171
     'form_elements' => array(
172 172
         'invokables' => array(
173
-             'Applications/Mail' => 'Applications\Form\Mail',
174
-             'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
175
-             'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
176
-             'Applications/CommentForm' => 'Applications\Form\CommentForm',
177
-             'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
178
-             'Applications/Apply' => 'Applications\Form\Apply',
179
-             'Applications/Contact' => 'Applications\Form\ContactContainer',
180
-             'Applications/Base'  => 'Applications\Form\Base',
181
-             'Applications/Facts' => 'Applications\Form\Facts',
182
-             'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
183
-             'Applications/Attributes' => 'Applications\Form\Attributes',
184
-             'Applications/Filter' => 'Applications\Form\FilterApplication',
185
-             'href' => 'Applications\Form\Element\Ref',
186
-         ),
173
+                'Applications/Mail' => 'Applications\Form\Mail',
174
+                'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
175
+                'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
176
+                'Applications/CommentForm' => 'Applications\Form\CommentForm',
177
+                'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
178
+                'Applications/Apply' => 'Applications\Form\Apply',
179
+                'Applications/Contact' => 'Applications\Form\ContactContainer',
180
+                'Applications/Base'  => 'Applications\Form\Base',
181
+                'Applications/Facts' => 'Applications\Form\Facts',
182
+                'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
183
+                'Applications/Attributes' => 'Applications\Form\Attributes',
184
+                'Applications/Filter' => 'Applications\Form\FilterApplication',
185
+                'href' => 'Applications\Form\Element\Ref',
186
+            ),
187 187
         'factories' => array(
188 188
             'Applications/ContactImage' => 'Applications\Factory\Form\ContactImageFactory',
189 189
             'Applications/Attachments' => 'Applications\Factory\Form\AttachmentsFactory',
190 190
         ),
191
-     ),
191
+        ),
192 192
 
193 193
     'form_elements_config' => array(
194 194
         'Applications/Apply' => array(
Please login to merge, or discard this patch.
module/Applications/src/Applications/Options/ModuleOptions.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     protected $workflow = [
82 82
 
83
-      'recruiter',
83
+        'recruiter',
84 84
     ];
85 85
     
86 86
     /**
@@ -218,13 +218,13 @@  discard block
 block discarded – undo
218 218
     }
219 219
     
220 220
     /**
221
-	 * @return boolean
222
-	 * @since 0.27
223
-	 */
224
-	public function getAllowSubsequentAttachmentUpload()
225
-	{
226
-		return $this->allowSubsequentAttachmentUpload;
227
-	}
221
+     * @return boolean
222
+     * @since 0.27
223
+     */
224
+    public function getAllowSubsequentAttachmentUpload()
225
+    {
226
+        return $this->allowSubsequentAttachmentUpload;
227
+    }
228 228
 
229 229
     /**
230 230
      * @param boolean $allowSubsequentAttachmentUpload
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/FileEntity.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -297,9 +297,9 @@
 block discarded – undo
297 297
     }
298 298
     
299 299
     /**
300
-	 * @see \Core\Entity\FileInterface::getUri()
301
-	 * @since 0.27
302
-	 */
303
-	public function getUri()
304
-	{}
300
+     * @see \Core\Entity\FileInterface::getUri()
301
+     * @since 0.27
302
+     */
303
+    public function getUri()
304
+    {}
305 305
 }
306 306
\ No newline at end of file
Please login to merge, or discard this patch.
module/Applications/src/Applications/Repository/Filter/PaginationQuery.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
          * and which are not in draft mode
92 92
          */
93 93
         $queryBuilder->field('permissions.view')->equals($userID)
94
-                     ->field('isDraft')->equals(false);
94
+                        ->field('isDraft')->equals(false);
95 95
 
96 96
         if (!isset($value['sort'])) {
97 97
             $value['sort'] = '-date';
Please login to merge, or discard this patch.
module/Organizations/config/module.config.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@  discard block
 block discarded – undo
68 68
     'view_manager' => array(
69 69
         // Map template to files. Speeds up the lookup through the template stack.
70 70
         'template_map' => array(
71
-             'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
72
-             'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
73
-             'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
74
-             'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
75
-             'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
76
-             'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
77
-             'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
71
+                'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
72
+                'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
73
+                'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
74
+                'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
75
+                'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
76
+                'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
77
+                'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
78 78
             'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
79 79
         ),
80 80
         // Where to look for view templates not mapped above
@@ -84,20 +84,20 @@  discard block
 block discarded – undo
84 84
     ),
85 85
     'form_elements' => array(
86 86
         'invokables' => array(
87
-             'Organizations/form' => 'Organizations\Form\Organizations',
88
-             'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
89
-             'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
90
-             'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
91
-             'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
92
-             'Organizations/OrganizationsNameFieldset'    => 'Organizations\Form\OrganizationsNameFieldset',
93
-             'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
94
-             //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
95
-             'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
96
-             'Organizations/Employees'                    => 'Organizations\Form\Employees',
97
-             'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
98
-             'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
99
-             'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
100
-             'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
87
+                'Organizations/form' => 'Organizations\Form\Organizations',
88
+                'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
89
+                'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
90
+                'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
91
+                'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
92
+                'Organizations/OrganizationsNameFieldset'    => 'Organizations\Form\OrganizationsNameFieldset',
93
+                'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
94
+                //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
95
+                'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
96
+                'Organizations/Employees'                    => 'Organizations\Form\Employees',
97
+                'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
98
+                'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
99
+                'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
100
+                'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
101 101
 
102 102
         ),
103 103
         'factories' => array(
@@ -187,13 +187,13 @@  discard block
 block discarded – undo
187 187
     ),
188 188
     'service_manager' => [
189 189
         'invokables' => [
190
-           'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
190
+            'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
191 191
         ],
192 192
         'factories' => [
193
-           'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
194
-           'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
195
-           'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
196
-           'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory'
193
+            'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
194
+            'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
195
+            'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
196
+            'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory'
197 197
         ]
198 198
     ],
199 199
     'event_manager' => [
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/View/Helper/ApplyUrl.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,10 +123,10 @@
 block discarded – undo
123 123
      * @param $options
124 124
      */
125 125
     public function setOptions($options){
126
-       foreach($options as $key=>$val) {
126
+        foreach($options as $key=>$val) {
127 127
             if (array_key_exists($this->options,$key)) {
128 128
                 $this->options[$key]=$val;
129 129
             }
130
-       }
130
+        }
131 131
     }
132 132
 }
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/View/Helper/JobUrl.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,10 +102,10 @@
 block discarded – undo
102 102
             }
103 103
         }else{
104 104
             $result = sprintf('<a href="%s" rel="%s" %s>%s</a>',
105
-                              $url,
106
-                              $options['rel'],
107
-                              $options['target']?"target=" . $options['target']:"",
108
-                              strip_tags($jobEntity->getTitle()));
105
+                                $url,
106
+                                $options['rel'],
107
+                                $options['target']?"target=" . $options['target']:"",
108
+                                strip_tags($jobEntity->getTitle()));
109 109
         }
110 110
 
111 111
         return $result;
Please login to merge, or discard this patch.