Passed
Pull Request — master (#631)
by ANTHONIUS
08:16
created
module/Applications/config/module.config.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -22,20 +22,20 @@  discard block
 block discarded – undo
22 22
 
23 23
 return [
24 24
     'doctrine' => [
25
-       'driver' => [
25
+        'driver' => [
26 26
             'odm_default' => [
27 27
                 'drivers' => [
28 28
                     'Applications\Entity' => 'annotation',
29 29
                 ],
30 30
             ],
31 31
             'annotation' => [
32
-               /*
32
+                /*
33 33
                 * All drivers (except DriverChain) require paths to work on. You
34 34
                 * may set this value as a string (for a single path) or an array
35 35
                 * for multiple paths.
36 36
                 * example https://github.com/doctrine/DoctrineORMModule
37 37
                 */
38
-               'paths' => [ __DIR__ . '/../src/Entity']
38
+                'paths' => [ __DIR__ . '/../src/Entity']
39 39
             ],
40 40
         ],
41 41
         'eventmanager' => [
@@ -75,19 +75,19 @@  discard block
 block discarded – undo
75 75
             'Applications/Options/ModuleOptions' => 'Applications\Options\ModuleOptions',
76 76
         ],
77 77
         'factories' => [
78
-           'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
79
-           'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
80
-           'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
81
-           'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
82
-           'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
83
-           'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
84
-           'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory',
78
+            'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
79
+            'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
80
+            'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
81
+            'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
82
+            'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
83
+            'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
84
+            'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory',
85 85
             Listener\JobSelectValues::class => Factory\Listener\JobSelectValuesFactory::class,
86 86
             Listener\LoadDependendEntities::class => InvokableFactory::class,
87 87
             UploadHandler::class => UploadHandlerFactory::class
88 88
         ],
89 89
         'aliases' => [
90
-           'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
90
+            'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
91 91
         ]
92 92
     ],
93 93
 
@@ -191,20 +191,20 @@  discard block
 block discarded – undo
191 191
     ],
192 192
     'form_elements' => [
193 193
         'invokables' => [
194
-             'Applications/Mail' => 'Applications\Form\Mail',
195
-             'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
196
-             'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
197
-             'Applications/CommentForm' => 'Applications\Form\CommentForm',
198
-             'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
199
-             'Applications/Apply' => 'Applications\Form\Apply',
200
-             'Applications/Contact' => 'Applications\Form\ContactContainer',
201
-             'Applications/Base'  => 'Applications\Form\Base',
202
-             'Applications/Facts' => 'Applications\Form\Facts',
203
-             'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
204
-             'Applications/Attributes' => 'Applications\Form\Attributes',
205
-             'href' => 'Applications\Form\Element\Ref',
194
+                'Applications/Mail' => 'Applications\Form\Mail',
195
+                'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
196
+                'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
197
+                'Applications/CommentForm' => 'Applications\Form\CommentForm',
198
+                'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
199
+                'Applications/Apply' => 'Applications\Form\Apply',
200
+                'Applications/Contact' => 'Applications\Form\ContactContainer',
201
+                'Applications/Base'  => 'Applications\Form\Base',
202
+                'Applications/Facts' => 'Applications\Form\Facts',
203
+                'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
204
+                'Applications/Attributes' => 'Applications\Form\Attributes',
205
+                'href' => 'Applications\Form\Element\Ref',
206 206
 
207
-         ],
207
+            ],
208 208
         'factories' => [
209 209
             'Applications/ContactImage' => 'Applications\Factory\Form\ContactImageFactory',
210 210
             'Applications/Attachments' => 'Applications\Factory\Form\AttachmentsFactory',
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
             Form\Element\JobSelect::class => Factory\Form\JobSelectFactory::class,
214 214
             UploadHandler::class => [UploadHandler::class, 'factory']
215 215
         ],
216
-     ],
216
+        ],
217 217
 
218 218
     'form_elements_config' => [
219 219
         'Applications/Apply' => [
Please login to merge, or discard this patch.
module/Applications/src/Controller/ApplyController.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -107,11 +107,11 @@  discard block
 block discarded – undo
107 107
         $this->uploadHandler = $uploadHandler;
108 108
     }
109 109
 
110
-	/**
111
-	 * @param ContainerInterface $container
112
-	 *
113
-	 * @return ApplyController
114
-	 */
110
+    /**
111
+     * @param ContainerInterface $container
112
+     *
113
+     * @return ApplyController
114
+     */
115 115
     static public function factory(ContainerInterface $container)
116 116
     {
117 117
         $config            = $container->get('Config');
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
         );
134 134
     }
135 135
 
136
-	public function attachDefaultListeners()
137
-	{
138
-		parent::attachDefaultListeners();
139
-		$events = $this->getEventManager();
140
-		$events->attach(MvcEvent::EVENT_DISPATCH, array($this, 'preDispatch'), 10);
141
-		return $this;
142
-	}
136
+    public function attachDefaultListeners()
137
+    {
138
+        parent::attachDefaultListeners();
139
+        $events = $this->getEventManager();
140
+        $events->attach(MvcEvent::EVENT_DISPATCH, array($this, 'preDispatch'), 10);
141
+        return $this;
142
+    }
143 143
 
144 144
     public function preDispatch(MvcEvent $e)
145 145
     {
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
             ->getHybridAuth();
318 318
         /* @var $authProfile Hybrid_User_Profile */
319 319
         $authProfile = $hybridAuth->authenticate($network)
320
-           ->getUserProfile();
320
+            ->getUserProfile();
321 321
 
322 322
         /* @var AbstractProfile $profile */
323 323
         $profile = $this->plugin('Auth/SocialProfiles')->fetch($network);
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
         }
371 371
 
372 372
         return $this->redirect()
373
-           ->toRoute('lang/apply', ['applyId' => $job->getApplyId()], $urlOptions);
373
+            ->toRoute('lang/apply', ['applyId' => $job->getApplyId()], $urlOptions);
374 374
     }
375 375
 
376 376
     public function processPreviewAction()
@@ -380,13 +380,13 @@  discard block
 block discarded – undo
380 380
 
381 381
     public function processAction()
382 382
     {
383
-    	$params = $this->params();
383
+        $params = $this->params();
384 384
         $formName  = $params->fromQuery('form');
385 385
         $form      = $this->formContainer->getForm($formName);
386 386
         $postData  = $form->getOption('use_post_array') ? $params->fromPost() : array();
387 387
         $uploadHandler = $this->uploadHandler;
388 388
 
389
-	    //@TODO: [ZF3] option use_files_array is false by default
389
+        //@TODO: [ZF3] option use_files_array is false by default
390 390
         //$filesData = $form->getOption('use_files_array') ? $params->fromFiles() : array();
391 391
 
392 392
         $form->setData(array_merge($postData,$_FILES));
@@ -432,9 +432,9 @@  discard block
 block discarded – undo
432 432
 
433 433
         return new JsonModel(
434 434
             array(
435
-	            'valid' => $form->isValid(),
436
-	            'content' => $content,
437
-	            'isApplicationValid' => $this->checkApplication($application)
435
+                'valid' => $form->isValid(),
436
+                'content' => $content,
437
+                'isApplicationValid' => $this->checkApplication($application)
438 438
             )
439 439
         );
440 440
     }
Please login to merge, or discard this patch.
module/Applications/src/Repository/Application.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
     {
107 107
         $qb = $this->getPaginationQueryBuilder($params);
108 108
         $cursor = $qb->hydrate(false)
109
-                     ->select('_id')
110
-                     ->getQuery()
111
-                     ->execute();
109
+                        ->select('_id')
110
+                        ->getQuery()
111
+                        ->execute();
112 112
 
113 113
         $list = new PaginationList(array_keys(ArrayUtils::iteratorToArray($cursor)));
114 114
         return $list;
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
     {
138 138
         $auth=$this->getService('AuthenticationService');
139 139
         $qb=$this->createQueryBuilder()
140
-                  ->field("readBy")->notIn(array($auth->getUser()->getId()))
141
-                  ->field("job")->equals(new ObjectId($job->getId()));
140
+                    ->field("readBy")->notIn(array($auth->getUser()->getId()))
141
+                    ->field("job")->equals(new ObjectId($job->getId()));
142 142
         return $qb->getQuery()->execute();
143 143
     }
144 144
 
Please login to merge, or discard this patch.
module/Core/test/CoreTestUtils/TestCase/TestUsesTraitsTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     {
38 38
         if (!property_exists($this, 'traits') || !property_exists($this, 'target')) {
39 39
             throw new PHPUnitFrameworkException(self::class . ': ' . static::class
40
-                                                   . ' must define the properties $target and $traits.');
40
+                                                    . ' must define the properties $target and $traits.');
41 41
         }
42 42
 
43 43
         $this->assertUsesTraits($this->traits, $this->target);
Please login to merge, or discard this patch.
module/Core/src/Controller/Plugin/FileSender.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
         $metadata = $file->getMetadata();
59 59
         $response->getHeaders()->addHeaderline('Content-Type', $metadata->getContentType())
60
-                               ->addHeaderline('Content-Length', $file->getLength());
60
+                                ->addHeaderline('Content-Length', $file->getLength());
61 61
         $response->sendHeaders();
62 62
         
63 63
         $resource = $fileManager->getStream($file);
Please login to merge, or discard this patch.
module/Core/src/Repository/SnapshotRepository.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             'entity' => $snapshot
126 126
         ]);
127 127
         $this->dm->getEventManager()
128
-                 ->dispatchEvent(DoctrineMongoODM\Event\RepositoryEventsSubscriber::postCreate, $eventArgs);
128
+                    ->dispatchEvent(DoctrineMongoODM\Event\RepositoryEventsSubscriber::postCreate, $eventArgs);
129 129
 
130 130
         $this->copy($source, $snapshot);
131 131
 
@@ -201,12 +201,12 @@  discard block
 block discarded – undo
201 201
     public function findLatest($sourceId, $isDraft = false)
202 202
     {
203 203
         $entity = $this->createQueryBuilder()
204
-          ->field('snapshotEntity')->equals(new ObjectId($sourceId))
205
-          ->field('snapshotMeta.isDraft')->equals($isDraft)
206
-          ->sort('snapshotMeta.dateCreated.date', 'desc')
207
-          ->limit(1)
208
-          ->getQuery()
209
-          ->getSingleResult()
204
+            ->field('snapshotEntity')->equals(new ObjectId($sourceId))
205
+            ->field('snapshotMeta.isDraft')->equals($isDraft)
206
+            ->sort('snapshotMeta.dateCreated.date', 'desc')
207
+            ->limit(1)
208
+            ->getQuery()
209
+            ->getSingleResult()
210 210
         ;
211 211
         if ($entity) {
212 212
             $this->dm->getEventManager()->dispatchEvent(
Please login to merge, or discard this patch.
module/Auth/test/AuthTest/Controller/ForgotPasswordControllerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@
 block discarded – undo
195 195
             ->method('isValid')
196 196
             ->willReturn(true);
197 197
 
198
-       $result = $this->controller->dispatch($request);
198
+        $result = $this->controller->dispatch($request);
199 199
 
200 200
         $expected = array(
201 201
             'form' => $this->formMock
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/ManageController.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -33,51 +33,51 @@  discard block
 block discarded – undo
33 33
  */
34 34
 class ManageController extends AbstractActionController
35 35
 {
36
-	private $userProfileContainer;
36
+    private $userProfileContainer;
37 37
 	
38
-	private $authService;
38
+    private $authService;
39 39
 	
40
-	private $socialProfileForm;
40
+    private $socialProfileForm;
41 41
 	
42
-	private $translator;
42
+    private $translator;
43 43
 	
44
-	private $repositories;
44
+    private $repositories;
45 45
 	
46
-	private $viewHelper;
46
+    private $viewHelper;
47 47
 	
48
-	private $hybridAuthAdapter;
48
+    private $hybridAuthAdapter;
49 49
 
50 50
     private UploadHandler $manageHandler;
51 51
 
52 52
     /**
53
-	 * @param ContainerInterface $container
54
-	 * @return ManageController
55
-	 */
56
-	static public function factory(ContainerInterface $container)
57
-	{
58
-		$forms = $container->get('forms');
59
-		$userProfileContainer = $forms->get('Auth/UserProfileContainer');
60
-		$socialProfileForm = $forms->get('Auth/SocialProfiles');
61
-		$authService = $container->get('AuthenticationService');
62
-		$translator = $container->get('translator');
63
-		$repositories = $container->get('repositories');
64
-		$viewHelper = $container->get('ViewHelperManager');
65
-		$hybridAuthAdapter = $container->get('HybridAuthAdapter');
66
-		$uploadHandler = $container->get(UploadHandler::class);
53
+     * @param ContainerInterface $container
54
+     * @return ManageController
55
+     */
56
+    static public function factory(ContainerInterface $container)
57
+    {
58
+        $forms = $container->get('forms');
59
+        $userProfileContainer = $forms->get('Auth/UserProfileContainer');
60
+        $socialProfileForm = $forms->get('Auth/SocialProfiles');
61
+        $authService = $container->get('AuthenticationService');
62
+        $translator = $container->get('translator');
63
+        $repositories = $container->get('repositories');
64
+        $viewHelper = $container->get('ViewHelperManager');
65
+        $hybridAuthAdapter = $container->get('HybridAuthAdapter');
66
+        $uploadHandler = $container->get(UploadHandler::class);
67 67
 
68
-		return new ManageController(
69
-			$userProfileContainer,
70
-			$authService,
71
-			$repositories,
72
-			$socialProfileForm,
73
-			$translator,
74
-			$viewHelper,
75
-			$hybridAuthAdapter,
68
+        return new ManageController(
69
+            $userProfileContainer,
70
+            $authService,
71
+            $repositories,
72
+            $socialProfileForm,
73
+            $translator,
74
+            $viewHelper,
75
+            $hybridAuthAdapter,
76 76
             $uploadHandler
77
-		);
78
-	}
77
+        );
78
+    }
79 79
 	
80
-	public function __construct(
80
+    public function __construct(
81 81
         UserProfileContainer $userProfileContainer,
82 82
         AuthenticationService $authService,
83 83
         RepositoryService $repositories,
@@ -86,19 +86,19 @@  discard block
 block discarded – undo
86 86
         HelperPluginManager $viewHelper,
87 87
         HybridAuth $hybridAuthAdapter,
88 88
         UploadHandler $manageHandler
89
-	)
90
-	{
91
-		$this->userProfileContainer = $userProfileContainer;
92
-		$this->authService = $authService;
93
-		$this->socialProfileForm = $socialProfileForm;
94
-		$this->repositories = $repositories;
95
-		$this->translator = $translator;
96
-		$this->viewHelper = $viewHelper;
97
-		$this->hybridAuthAdapter = $hybridAuthAdapter;
89
+    )
90
+    {
91
+        $this->userProfileContainer = $userProfileContainer;
92
+        $this->authService = $authService;
93
+        $this->socialProfileForm = $socialProfileForm;
94
+        $this->repositories = $repositories;
95
+        $this->translator = $translator;
96
+        $this->viewHelper = $viewHelper;
97
+        $this->hybridAuthAdapter = $hybridAuthAdapter;
98 98
         $this->manageHandler = $manageHandler;
99 99
     }
100 100
 	
101
-	/**
101
+    /**
102 102
      * @return array|JsonModel
103 103
      */
104 104
     public function profileAction()
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                 $postData  = $form->getOption('use_post_array') ? $_POST : array();
143 143
                 //@TODO: [ZF3] option use_files_array is false by default
144 144
                 //$filesData = $form->getOption('use_files_array') ? $_FILES : array();
145
-	            $filesData = $_FILES;
145
+                $filesData = $_FILES;
146 146
                 $data      = array_merge($postData, $filesData);
147 147
                 $form->setData($data);
148 148
 
Please login to merge, or discard this patch.
module/Organizations/config/module.config.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -66,14 +66,14 @@  discard block
 block discarded – undo
66 66
     'view_manager' => [
67 67
         // Map template to files. Speeds up the lookup through the template stack.
68 68
         'template_map' => [
69
-             'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
70
-             'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
71
-             'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
72
-             'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
73
-             'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
74
-             'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
75
-             'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
76
-             'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
69
+                'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
70
+                'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
71
+                'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
72
+                'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
73
+                'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
74
+                'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
75
+                'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
76
+                'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
77 77
             'organizations/profile/disabled' => __DIR__ . '/../view/organizations/profile/disabled.phtml',
78 78
         ],
79 79
         // Where to look for view templates not mapped above
@@ -83,21 +83,21 @@  discard block
 block discarded – undo
83 83
     ],
84 84
     'form_elements' => [
85 85
         'invokables' => [
86
-             'Organizations/Form' => 'Organizations\Form\Organizations',
87
-             'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
88
-             'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
89
-             'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
90
-             'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
91
-             'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
92
-             //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
93
-             'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
94
-             'Organizations/Employees'                    => 'Organizations\Form\Employees',
95
-             'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
96
-             'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
97
-             'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
98
-             'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
99
-             'Organizations/Profile'                      => \Organizations\Form\OrganizationsProfileForm::class,
100
-             'Organizations/ProfileFieldset'              => \Organizations\Form\OrganizationsProfileFieldset::class
86
+                'Organizations/Form' => 'Organizations\Form\Organizations',
87
+                'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
88
+                'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
89
+                'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
90
+                'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
91
+                'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
92
+                //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
93
+                'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
94
+                'Organizations/Employees'                    => 'Organizations\Form\Employees',
95
+                'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
96
+                'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
97
+                'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
98
+                'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
99
+                'Organizations/Profile'                      => \Organizations\Form\OrganizationsProfileForm::class,
100
+                'Organizations/ProfileFieldset'              => \Organizations\Form\OrganizationsProfileFieldset::class
101 101
         ],
102 102
         'factories' => [
103 103
             'Organizations/OrganizationsNameFieldset'    => \Organizations\Factory\Form\OrganizationsNameFieldsetFactory::class,
@@ -212,13 +212,13 @@  discard block
 block discarded – undo
212 212
 
213 213
     'service_manager' => [
214 214
         'invokables' => [
215
-           'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
215
+            'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
216 216
         ],
217 217
         'factories' => [
218
-           'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
219
-           'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
220
-           'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
221
-           'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
218
+            'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
219
+            'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
220
+            'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
221
+            'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
222 222
             \Organizations\Service\UploadHandler::class => [\Organizations\Service\UploadHandler::class, 'factory'],
223 223
         ],
224 224
     ],
Please login to merge, or discard this patch.