Completed
Push — develop ( 959dbb...96e586 )
by
unknown
07:26
created
module/Core/src/Core/Factory/Paginator/RepositoryAbstractFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
      */
146 146
     public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)
147 147
     {
148
-       return $this($serviceLocator,$requestedName);
148
+        return $this($serviceLocator,$requestedName);
149 149
     }
150 150
 
151 151
     /**
Please login to merge, or discard this patch.
src/Applications/Repository/Event/UpdateFilesPermissionsSubscriber.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
                
57 57
                 foreach ($document->getAttachments() as $attachment) {  /* @var \Applications\Entity\Attachment $attachment */
58 58
                     $attachment->getPermissions()
59
-                               ->clear()
60
-                               ->inherit($permissions);
59
+                                ->clear()
60
+                                ->inherit($permissions);
61 61
                     if ($isUpdate) {
62 62
                         $uow->computeChangeSet(
63 63
                             $dm->getClassMetadata(get_class($attachment)),
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
                 
69 69
                 if ($image = $document->getContact()->getImage()) {
70 70
                     $image->getPermissions()
71
-                          ->clear()
72
-                          ->inherit($permissions);
71
+                            ->clear()
72
+                            ->inherit($permissions);
73 73
                     if ($isUpdate) {
74 74
                         $uow->computeChangeSet(
75 75
                             $dm->getClassMetadata(get_class($image)),
Please login to merge, or discard this patch.
module/Applications/src/Applications/Repository/Application.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
     {
103 103
         $qb = $this->getPaginationQueryBuilder($params);
104 104
         $cursor = $qb->hydrate(false)
105
-                     ->select('_id')
106
-                     ->getQuery()
107
-                     ->execute();
105
+                        ->select('_id')
106
+                        ->getQuery()
107
+                        ->execute();
108 108
         
109 109
         $list = new PaginationList(array_keys(ArrayUtils::iteratorToArray($cursor)));
110 110
         return $list;
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
     {
134 134
         $auth=$this->getService('AuthenticationService');
135 135
         $qb=$this->createQueryBuilder()
136
-                  ->field("readBy")->notIn(array($auth->getUser()->getId()))
137
-                  ->field("job")->equals(new \MongoId($job->getId()));
136
+                    ->field("readBy")->notIn(array($auth->getUser()->getId()))
137
+                    ->field("job")->equals(new \MongoId($job->getId()));
138 138
         return $qb->getQuery()->execute();
139 139
     }
140 140
 
Please login to merge, or discard this patch.
module/Applications/src/Applications/Entity/ApplicationInterface.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -241,7 +241,6 @@  discard block
 block discarded – undo
241 241
      * Gets all comments for the application.
242 242
      *
243 243
      * @return ArrayCollection;
244
-
245 244
      */
246 245
     public function getComments();
247 246
     
@@ -272,7 +271,6 @@  discard block
 block discarded – undo
272 271
      * Gets all attributes for an application.
273 272
      *
274 273
      * @return ArrayCollection;
275
-
276 274
      */
277 275
     public function getAttributes();
278 276
 
Please login to merge, or discard this patch.
module/Applications/src/Applications/Controller/CommentController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                     $application->getComments()->add($comment);
106 106
                     $application->changeStatus($application->getStatus(), sprintf(
107 107
                                     /* @translate */ 'Application was rated by %s',
108
-                                     $this->auth()->getUser()->getInfo()->getDisplayName())
108
+                                        $this->auth()->getUser()->getInfo()->getDisplayName())
109 109
                         );
110 110
                 }
111 111
                 $viewModel->setVariable('isSaved', true);
Please login to merge, or discard this patch.
module/Cv/src/Cv/Repository/Event/DeleteRemovedAttachmentsSubscriber.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
         $fileId = new \MongoId($file->getId());
45 45
         $dm = $eventArgs->getDocumentManager();
46 46
         $dm->createQueryBuilder('Cv\Entity\Cv')
47
-           ->update()->multiple(true)
48
-           ->field('attachments')->equals($fileId)->pull($fileId)
49
-           ->getQuery()->execute();
47
+            ->update()->multiple(true)
48
+            ->field('attachments')->equals($fileId)->pull($fileId)
49
+            ->getQuery()->execute();
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
module/Core/config/module.config.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -36,24 +36,24 @@  discard block
 block discarded – undo
36 36
     'log' => [
37 37
         'Core/Log' => [
38 38
             'writers' => [
39
-                 [
40
-                     'name' => 'stream',
39
+                    [
40
+                        'name' => 'stream',
41 41
                     'priority' => 1000,
42 42
                     'options' => [
43
-                         'stream' => __DIR__ .'/../../../log/yawik.log',
43
+                            'stream' => __DIR__ .'/../../../log/yawik.log',
44
+                    ],
44 45
                     ],
45
-                 ],
46 46
             ],
47 47
         ],
48 48
         'Log/Core/Mail' => [
49 49
             'writers' => [
50
-                 [
51
-                     'name' => 'stream',
50
+                    [
51
+                        'name' => 'stream',
52 52
                     'priority' => 1000,
53 53
                     'options' => [
54
-                         'stream' => __DIR__ .'/../../../log/mails.log',
54
+                            'stream' => __DIR__ .'/../../../log/mails.log',
55
+                    ],
55 56
                     ],
56
-                 ],
57 57
             ],
58 58
         ],
59 59
         'ErrorLogger' => [
@@ -250,17 +250,17 @@  discard block
 block discarded – undo
250 250
     // Defines the Core/Navigation.
251 251
     'navigation' => [
252 252
         'default' => [
253
-             'home' => [
254
-                 'label' => /*@translate*/ 'Home',
255
-                 'route' => 'lang',
256
-                 'visible' => false
257
-             ],
258
-             'admin' => [
259
-                 'label ' => /*@translate*/ 'Admin',
260
-                 'route' => 'lang/admin',
261
-                 'resource' => 'route/lang/admin',
262
-                 'order' => 200,
263
-             ],
253
+                'home' => [
254
+                    'label' => /*@translate*/ 'Home',
255
+                    'route' => 'lang',
256
+                    'visible' => false
257
+                ],
258
+                'admin' => [
259
+                    'label ' => /*@translate*/ 'Admin',
260
+                    'route' => 'lang/admin',
261
+                    'resource' => 'route/lang/admin',
262
+                    'order' => 200,
263
+                ],
264 264
         ],
265 265
     ],
266 266
     // Configuration of the controller service manager (Which loads controllers)
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' => [
69 69
         // Map template to files. Speeds up the lookup through the template stack.
70 70
         'template_map' => [
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' => [
86 86
         'invokables' => [
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' => [
@@ -197,13 +197,13 @@  discard block
 block discarded – undo
197 197
 
198 198
     'service_manager' => [
199 199
         'invokables' => [
200
-           'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
200
+            'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
201 201
         ],
202 202
         'factories' => [
203
-           'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
204
-           'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
205
-           'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
206
-           'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
203
+            'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
204
+            'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
205
+            'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
206
+            'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
207 207
         ],
208 208
     ],
209 209
 
Please login to merge, or discard this patch.
module/Applications/src/Applications/Mail/NewApplication.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
             'link'  => $this->router->assemble(
101 101
                             ['id' => $this->application->getId()],
102 102
                             ['name'=>'lang/applications/detail', 'force_canonical'=>true]
103
-                       ),
103
+                        ),
104 104
         ];
105 105
 
106 106
         $this->setTo($this->user->getInfo()->getEmail(), $this->user->getInfo()->getDisplayName(false));
Please login to merge, or discard this patch.