Completed
Push — develop ( e70242...efddeb )
by Mathias
65:39 queued 53:48
created
module/Core/src/Core/Controller/FileController.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -28,27 +28,27 @@
 block discarded – undo
28 28
  */
29 29
 class FileController extends AbstractActionController
30 30
 {
31
-	/**
32
-	 * @var RepositoryService
33
-	 */
34
-	private $repositories;
31
+    /**
32
+     * @var RepositoryService
33
+     */
34
+    private $repositories;
35 35
 	
36
-	/**
37
-	 * @var EventManager
38
-	 */
39
-	private $coreFileEvents;
36
+    /**
37
+     * @var EventManager
38
+     */
39
+    private $coreFileEvents;
40 40
 	
41
-	public function __construct(
42
-		RepositoryService $repositories,
43
-		EventManager $eventManager
44
-	)
45
-	{
46
-		$this->repositories = $repositories;
47
-		$this->coreFileEvents = $eventManager;
48
-	}
41
+    public function __construct(
42
+        RepositoryService $repositories,
43
+        EventManager $eventManager
44
+    )
45
+    {
46
+        $this->repositories = $repositories;
47
+        $this->coreFileEvents = $eventManager;
48
+    }
49 49
 	
50 50
 	
51
-	protected function attachDefaultListeners()
51
+    protected function attachDefaultListeners()
52 52
     {
53 53
         parent::attachDefaultListeners();
54 54
         $events = $this->getEventManager();
Please login to merge, or discard this patch.
src/Jobs/Factory/Controller/ApiJobListByOrganizationControllerFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                                 ['name' => 'StringTrim'],
41 41
                                 ['name' => 'Alpha'],
42 42
                             ],
43
-                          ]);
43
+                            ]);
44 44
 
45 45
         $controller = new ApiJobListByOrganizationController($jobRepository, $apiJobDehydrator, $inputFilter);
46 46
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Model/ApiJobDehydrator.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@  discard block
 block discarded – undo
22 22
      */
23 23
     protected $url;
24 24
 
25
-  /**
26
-   * ViewHelper for generating an url to a job posting
27
-   *
28
-   * @var JobUrl $jobUrl
29
-   */
25
+    /**
26
+     * ViewHelper for generating an url to a job posting
27
+     *
28
+     * @var JobUrl $jobUrl
29
+     */
30 30
     protected $jobUrl;
31 31
 
32 32
     /**
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
         return $this;
41 41
     }
42 42
 
43
-   /**
44
-    * @param JobUrl $url
45
-    *
46
-    * @return $this
47
-    */
43
+    /**
44
+     * @param JobUrl $url
45
+     *
46
+     * @return $this
47
+     */
48 48
     public function setJobUrl($url)
49 49
     {
50 50
         $this->jobUrl = $url;
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
             'location' => $job->getLocation(),
65 65
             'link' => $this->jobUrl->__invoke(
66 66
                 $job,[
67
-                  'linkOnly'=> true,
68
-                  'absolute' => true,
67
+                    'linkOnly'=> true,
68
+                    'absolute' => true,
69 69
                 ]
70 70
             ),
71 71
             'organization' => array(
Please login to merge, or discard this patch.
module/Organizations/config/module.config.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     'controllers' => [
51 51
         'factories' => [
52
-	        'Organizations/InviteEmployee' => \Organizations\Factory\Controller\InviteEmployeeControllerFactory::class,
52
+            'Organizations/InviteEmployee' => \Organizations\Factory\Controller\InviteEmployeeControllerFactory::class,
53 53
             'Organizations/Index' => 'Organizations\Factory\Controller\IndexControllerFactory',
54 54
             'Organizations/Profile' => 'Organizations\Factory\Controller\ProfileControllerFactory'
55 55
         ]
@@ -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,24 +83,24 @@  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
-	        'Organizations/OrganizationsNameFieldset'    => \Organizations\Factory\Form\OrganizationsNameFieldsetFactory::class,
103
+            'Organizations/OrganizationsNameFieldset'    => \Organizations\Factory\Form\OrganizationsNameFieldsetFactory::class,
104 104
             'Organizations/Image'                        => \Organizations\Form\LogoImageFactory::class,
105 105
             'Organizations/EmployeesFieldset'            => 'Organizations\Factory\Form\EmployeesFieldsetFactory',
106 106
             'Organizations/EmployeeFieldset'             => 'Organizations\Factory\Form\EmployeeFieldsetFactory',
@@ -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
         ],
223 223
     ],
224 224
 
Please login to merge, or discard this patch.
module/Core/src/Core/Repository/SnapshotRepository.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             'entity' => $snapshot
125 125
         ]);
126 126
         $this->dm->getEventManager()
127
-                 ->dispatchEvent(DoctrineMongoODM\Event\RepositoryEventsSubscriber::postCreate, $eventArgs);
127
+                    ->dispatchEvent(DoctrineMongoODM\Event\RepositoryEventsSubscriber::postCreate, $eventArgs);
128 128
 
129 129
         $this->copy($source, $snapshot);
130 130
 
@@ -200,12 +200,12 @@  discard block
 block discarded – undo
200 200
     public function findLatest($sourceId, $isDraft = false)
201 201
     {
202 202
         $entity = $this->createQueryBuilder()
203
-          ->field('snapshotEntity')->equals(new \MongoId($sourceId))
204
-          ->field('snapshotMeta.isDraft')->equals($isDraft)
205
-          ->sort('snapshotMeta.dateCreated.date', 'desc')
206
-          ->limit(1)
207
-          ->getQuery()
208
-          ->getSingleResult()
203
+            ->field('snapshotEntity')->equals(new \MongoId($sourceId))
204
+            ->field('snapshotMeta.isDraft')->equals($isDraft)
205
+            ->sort('snapshotMeta.dateCreated.date', 'desc')
206
+            ->limit(1)
207
+            ->getQuery()
208
+            ->getSingleResult()
209 209
         ;
210 210
         if ($entity) {
211 211
             $this->dm->getEventManager()->dispatchEvent(
Please login to merge, or discard this patch.
module/Organizations/src/Organizations/Repository/Organization.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -129,10 +129,10 @@  discard block
 block discarded – undo
129 129
 //           )
130 130
 //        );
131 131
         $qb->addAnd($qb->expr()->field('user')->equals($userId))
132
-           ->addAnd(
133
-               $qb->expr()->addOr($qb->expr()->field('parent')->exists(false))
134
-                               ->addOr($qb->expr()->field('parent')->equals(null))
135
-           );
132
+            ->addAnd(
133
+                $qb->expr()->addOr($qb->expr()->field('parent')->exists(false))
134
+                                ->addOr($qb->expr()->field('parent')->equals(null))
135
+            );
136 136
 
137 137
         $q      = $qb->getQuery();
138 138
         $entity = $q->getSingleResult();
@@ -192,11 +192,11 @@  discard block
 block discarded – undo
192 192
         return $c;
193 193
     }
194 194
 	
195
-	/**
196
-	 * @param array|null    $data
197
-	 * @param bool          $persist
198
-	 * @return \Organizations\Entity\Organization
199
-	 */
195
+    /**
196
+     * @param array|null    $data
197
+     * @param bool          $persist
198
+     * @return \Organizations\Entity\Organization
199
+     */
200 200
     public function create(array $data = null, $persist=false)
201 201
     {
202 202
         $entity = parent::create($data);
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Entity/Decorator/JsonLdProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
         $dateStart = $this->job->getDatePublishStart();
53 53
         $dateStart = $dateStart ? $dateStart->format('Y-m-d H:i:s') : null;
54
-	    $dateEnd = $this->job->getDatePublishEnd();
54
+        $dateEnd = $this->job->getDatePublishEnd();
55 55
         $dateEnd = $dateEnd ? $dateEnd->format('Y-m-d H:i:s') : null;
56 56
         if (!$dateEnd){
57 57
             $dateEnd = new \DateTime($dateStart);
Please login to merge, or discard this patch.
module/Core/config/module.config.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -43,24 +43,24 @@  discard block
 block discarded – undo
43 43
     'log' => array(
44 44
         'Core/Log' => array(
45 45
             'writers' => array(
46
-                 array(
47
-                     'name' => 'stream',
46
+                    array(
47
+                        'name' => 'stream',
48 48
                     'priority' => 1000,
49 49
                     'options' => array(
50
-                         'stream' => __DIR__ .'/../../../log/yawik.log',
50
+                            'stream' => __DIR__ .'/../../../log/yawik.log',
51
+                    ),
51 52
                     ),
52
-                 ),
53 53
             ),
54 54
         ),
55 55
         'Log/Core/Mail' => array(
56 56
             'writers' => array(
57
-                 array(
58
-                     'name' => 'stream',
57
+                    array(
58
+                        'name' => 'stream',
59 59
                     'priority' => 1000,
60 60
                     'options' => array(
61
-                         'stream' => __DIR__ .'/../../../log/mails.log',
61
+                            'stream' => __DIR__ .'/../../../log/mails.log',
62
+                    ),
62 63
                     ),
63
-                 ),
64 64
             ),
65 65
         ),
66 66
     ),
@@ -317,13 +317,13 @@  discard block
 block discarded – undo
317 317
     ),
318 318
     // Configuration of the controller service manager (Which loads controllers)
319 319
     'controllers' => array(
320
-	    'factories' => [
321
-		    'Core/Index'   => LazyControllerFactory::class,
320
+        'factories' => [
321
+            'Core/Index'   => LazyControllerFactory::class,
322 322
             'Core/Admin'   => AdminControllerFactory::class,
323
-		    'Core/File'    => FileControllerFactory::class,
323
+            'Core/File'    => FileControllerFactory::class,
324 324
             'Core/Content' => LazyControllerFactory::class,
325 325
             Controller\Console\PurgeController::class => Controller\Console\PurgeControllerFactory::class,
326
-	    ],
326
+        ],
327 327
     ),
328 328
     // Configuration of the controller plugin service manager
329 329
     'controller_plugins' => array(
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
             'paginatorservice' => 'Core/PaginatorService',
355 355
             'paginationParams' => 'Core/PaginationParams',
356 356
             'searchform'       => 'Core/SearchForm',
357
-	        'notification'     => 'Notification',
357
+            'notification'     => 'Notification',
358 358
         )
359 359
     ),
360 360
     // Configure the view service manager
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
         ),
453 453
         'aliases' => [
454 454
             'snippet' => \Core\View\Helper\Snippet::class,
455
-	        'ajaxUrl' => \Core\View\Helper\AjaxUrl::class,
455
+            'ajaxUrl' => \Core\View\Helper\AjaxUrl::class,
456 456
             'proxy' => \Core\View\Helper\Proxy::class,
457 457
             'form_element' => 'formElement',
458 458
         ],
@@ -564,17 +564,17 @@  discard block
 block discarded – undo
564 564
         ],
565 565
 
566 566
         'Core/Ajax/Events' => [
567
-	        'service' => 'Core/EventManager',
568
-	        'event'   => \Core\Listener\Events\AjaxEvent::class,
567
+            'service' => 'Core/EventManager',
568
+            'event'   => \Core\Listener\Events\AjaxEvent::class,
569 569
         ],
570 570
 	    
571
-	    'Core/File/Events' => [
572
-		    'service' => 'Core/EventManager',
573
-		    'event' => \Core\Listener\Events\FileEvent::class,
571
+        'Core/File/Events' => [
572
+            'service' => 'Core/EventManager',
573
+            'event' => \Core\Listener\Events\FileEvent::class,
574 574
             'listeners' => [
575 575
                 \Core\Listener\DeleteImageSetListener::class => [\Core\Listener\Events\FileEvent::EVENT_DELETE, -1000],
576 576
             ],
577
-	    ],
577
+        ],
578 578
 
579 579
         'Core/EntityEraser/Dependencies/Events' => [
580 580
             'service' => Service\EntityEraser\EntityEraserEvents::class,
Please login to merge, or discard this patch.
module/Applications/config/module.config.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -18,20 +18,20 @@  discard block
 block discarded – undo
18 18
 
19 19
 return [
20 20
     'doctrine' => [
21
-       'driver' => [
21
+        'driver' => [
22 22
             'odm_default' => [
23 23
                 'drivers' => [
24 24
                     'Applications\Entity' => 'annotation',
25 25
                 ],
26 26
             ],
27 27
             'annotation' => [
28
-               /*
28
+                /*
29 29
                 * All drivers (except DriverChain) require paths to work on. You
30 30
                 * may set this value as a string (for a single path) or an array
31 31
                 * for multiple paths.
32 32
                 * example https://github.com/doctrine/DoctrineORMModule
33 33
                 */
34
-               'paths' => [ __DIR__ . '/../src/Applications/Entity']
34
+                'paths' => [ __DIR__ . '/../src/Applications/Entity']
35 35
             ],
36 36
         ],
37 37
         'eventmanager' => [
@@ -71,18 +71,18 @@  discard block
 block discarded – undo
71 71
             'Applications/Options/ModuleOptions' => 'Applications\Options\ModuleOptions',
72 72
         ],
73 73
         'factories' => [
74
-           'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
75
-           'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
76
-           'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
77
-           'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
78
-           'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
79
-           'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
80
-           'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory',
74
+            'Applications/Options' => 'Applications\Factory\ModuleOptionsFactory',
75
+            'ApplicationRepository' => 'Applications\Repository\Service\ApplicationRepositoryFactory',
76
+            'ApplicationMapper' => 'Applications\Repository\Service\ApplicationMapperFactory',
77
+            'EducationMapper'   => 'Applications\Repository\Service\EducationMapperFactory',
78
+            'Applications/Listener/ApplicationCreated' => 'Applications\Factory\Listener\EventApplicationCreatedFactory',
79
+            'Applications/Listener/ApplicationStatusChangePre' => 'Applications\Factory\Listener\StatusChangeFactory',
80
+            'Applications\Auth\Dependency\ListListener' => 'Applications\Factory\Auth\Dependency\ListListenerFactory',
81 81
             Listener\JobSelectValues::class => Factory\Listener\JobSelectValuesFactory::class,
82 82
             Listener\LoadDependendEntities::class => InvokableFactory::class,
83 83
         ],
84 84
         'aliases' => [
85
-           'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
85
+            'Applications/Listener/ApplicationStatusChangePost' => 'Applications/Listener/ApplicationStatusChangePre'
86 86
         ]
87 87
     ],
88 88
 	
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
             'Applications\Controller\Index' => 'Applications\Controller\IndexController',
92 92
             'Applications\Controller\MultiManage' => 'Applications\Controller\MultimanageController',
93 93
         ],
94
-	    'factories' => [
95
-		    'Applications/Controller/Manage' => [ManageController::class,'factory'],
96
-		    'Applications\Controller\Apply' => [ApplyController::class,'factory'],
97
-		    'Applications/CommentController' => [CommentController::class,'factory'],
98
-		    'Applications/Console' => [ConsoleController::class,'factory'],
99
-	    ]
94
+        'factories' => [
95
+            'Applications/Controller/Manage' => [ManageController::class,'factory'],
96
+            'Applications\Controller\Apply' => [ApplyController::class,'factory'],
97
+            'Applications/CommentController' => [CommentController::class,'factory'],
98
+            'Applications/Console' => [ConsoleController::class,'factory'],
99
+        ]
100 100
     ],
101 101
     
102 102
     'acl' => [
@@ -185,20 +185,20 @@  discard block
 block discarded – undo
185 185
     ],
186 186
     'form_elements' => [
187 187
         'invokables' => [
188
-             'Applications/Mail' => 'Applications\Form\Mail',
189
-             'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
190
-             'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
191
-             'Applications/CommentForm' => 'Applications\Form\CommentForm',
192
-             'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
193
-             'Applications/Apply' => 'Applications\Form\Apply',
194
-             'Applications/Contact' => 'Applications\Form\ContactContainer',
195
-             'Applications/Base'  => 'Applications\Form\Base',
196
-             'Applications/Facts' => 'Applications\Form\Facts',
197
-             'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
198
-             'Applications/Attributes' => 'Applications\Form\Attributes',
199
-             'href' => 'Applications\Form\Element\Ref',
188
+                'Applications/Mail' => 'Applications\Form\Mail',
189
+                'Applications/BaseFieldset' => 'Applications\Form\BaseFieldset',
190
+                'Applications/SettingsFieldset' => 'Applications\Form\SettingsFieldset',
191
+                'Applications/CommentForm' => 'Applications\Form\CommentForm',
192
+                'Applications/CommentFieldset' => 'Applications\Form\CommentFieldset',
193
+                'Applications/Apply' => 'Applications\Form\Apply',
194
+                'Applications/Contact' => 'Applications\Form\ContactContainer',
195
+                'Applications/Base'  => 'Applications\Form\Base',
196
+                'Applications/Facts' => 'Applications\Form\Facts',
197
+                'Applications/FactsFieldset' => 'Applications\Form\FactsFieldset',
198
+                'Applications/Attributes' => 'Applications\Form\Attributes',
199
+                'href' => 'Applications\Form\Element\Ref',
200 200
 
201
-         ],
201
+            ],
202 202
         'factories' => [
203 203
             'Applications/ContactImage' => 'Applications\Factory\Form\ContactImageFactory',
204 204
             'Applications/Attachments' => 'Applications\Factory\Form\AttachmentsFactory',
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
             'Applications\Form\Element\StatusSelect' => Factory\Form\StatusSelectFactory::class,
207 207
             Form\Element\JobSelect::class => Factory\Form\JobSelectFactory::class
208 208
         ],
209
-     ],
209
+        ],
210 210
 
211 211
     'form_elements_config' => [
212 212
         'Applications/Apply' => [
Please login to merge, or discard this patch.