Completed
Push — develop ( 321e68...dce9ea )
by Carsten
09:20
created
module/Applications/src/Applications/Form/ApplicationsFilter.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -36,50 +36,50 @@
 block discarded – undo
36 36
     {
37 37
 
38 38
         $this->add(
39
-             [
40
-                 'type' => JobSelect::class,
41
-                 'name' => 'job',
42
-                 'options' => [
43
-                     'label' => /* @translate */ 'Enter job title',
44
-                     //'empty_option' => 'Enter job title',
45
-                 ],
46
-                 'attributes' => [
47
-                     'id' => 'job-filter',
48
-                     'class' => 'form-control',
49
-                     'data-placeholder' => 'Enter job title',
50
-                     'data-autoinit' => 'false',
51
-                     'data-submit-on-change' => 'true',
52
-                 ]
53
-             ]
39
+                [
40
+                    'type' => JobSelect::class,
41
+                    'name' => 'job',
42
+                    'options' => [
43
+                        'label' => /* @translate */ 'Enter job title',
44
+                        //'empty_option' => 'Enter job title',
45
+                    ],
46
+                    'attributes' => [
47
+                        'id' => 'job-filter',
48
+                        'class' => 'form-control',
49
+                        'data-placeholder' => 'Enter job title',
50
+                        'data-autoinit' => 'false',
51
+                        'data-submit-on-change' => 'true',
52
+                    ]
53
+                ]
54 54
         );
55 55
 
56 56
         $this->add(
57
-             [
58
-                 'type' => 'Applications\Form\Element\StatusSelect',
59
-                 'name' => 'status',
60
-                 'options' => [
61
-                     'label' => /* @translate */ 'Status',
62
-                 ],
63
-                 'attributes' => [
64
-                     'data-width' => '100%',
65
-                     'data-submit-on-change' => 'true',
66
-                     'data-placeholder' => /*@translate*/ 'all',
67
-                 ]
68
-             ]
57
+                [
58
+                    'type' => 'Applications\Form\Element\StatusSelect',
59
+                    'name' => 'status',
60
+                    'options' => [
61
+                        'label' => /* @translate */ 'Status',
62
+                    ],
63
+                    'attributes' => [
64
+                        'data-width' => '100%',
65
+                        'data-submit-on-change' => 'true',
66
+                        'data-placeholder' => /*@translate*/ 'all',
67
+                    ]
68
+                ]
69 69
         );
70 70
 
71 71
         $this->add(
72
-             ['type' => 'ToggleButton',
73
-                   'name' => 'unread',
74
-                   'options' => [
75
-                       'checked_value' => '1',
76
-                       'unchecked_value' => '0',
77
-                       'label' => 'unread',
78
-                   ],
79
-                 'attributes' => [
80
-                     'data-submit-on-change' => 'true',
81
-                 ]
82
-             ]
72
+                ['type' => 'ToggleButton',
73
+                    'name' => 'unread',
74
+                    'options' => [
75
+                        'checked_value' => '1',
76
+                        'unchecked_value' => '0',
77
+                        'label' => 'unread',
78
+                    ],
79
+                    'attributes' => [
80
+                        'data-submit-on-change' => 'true',
81
+                    ]
82
+                ]
83 83
         );
84 84
 
85 85
         $this->setButtonElement('unread');
Please login to merge, or discard this patch.
module/Cv/src/Cv/Form/PreferredJobFieldset.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         );
129 129
 
130 130
         $this->setName('preferredJob')
131
-             ->setHydrator(new EntityHydrator())
132
-             ->setObject(new PreferredJob());
131
+                ->setHydrator(new EntityHydrator())
132
+                ->setObject(new PreferredJob());
133 133
     }
134 134
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     
18 18
     use EmptySummaryAwareTrait, HydratorStrategyAwareTrait, ViewPartialProviderTrait;
19 19
 
20
-    private $defaultEmptySummaryNotice =  /*@translate*/ 'Click here to enter your employment expectation';
20
+    private $defaultEmptySummaryNotice = /*@translate*/ 'Click here to enter your employment expectation';
21 21
     private $defaultPartial = 'cv/form/preferred-job-fieldset';
22 22
     
23 23
     /**
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Repository/Job.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
     {
56 56
         $qb = $this->createQueryBuilder();
57 57
         $qb->hydrate(false)
58
-           ->select('applyId')
59
-           ->field('applyId')->equals($applyId);
58
+            ->select('applyId')
59
+            ->field('applyId')->equals($applyId);
60 60
            
61 61
         $result = $qb->getQuery()->execute();
62 62
         $count = $result->count();
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         $qb = $this->createQueryBuilder();
137 137
         $qb->distinct('organization')
138 138
             ->hydrate(true)
139
-           ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]);
139
+            ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]);
140 140
 
141 141
         $q = $qb->getQuery();
142 142
         $r = $q->execute();
@@ -206,8 +206,8 @@  discard block
 block discarded – undo
206 206
 
207 207
         if (null !== $isDeleted) {
208 208
             $qb->addAnd(
209
-               $qb->expr()->addOr($qb->expr()->field('isDeleted')->equals($isDeleted))
210
-                          ->addOr($qb->expr()->field('isDeleted')->exists(false))
209
+                $qb->expr()->addOr($qb->expr()->field('isDeleted')->equals($isDeleted))
210
+                            ->addOr($qb->expr()->field('isDeleted')->exists(false))
211 211
             );
212 212
         }
213 213
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function findByAssignedPermissionsResourceId($resourceId)
71 71
     {
72 72
         $criteria = $this->getIsDeletedCriteria(
73
-                ['permissions.assigned.' . $resourceId => [ '$exists' => true]]
73
+                ['permissions.assigned.'.$resourceId => ['$exists' => true]]
74 74
         );
75 75
 
76 76
         return $this->findBy($criteria);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         $qb = $this->createQueryBuilder();
137 137
         $qb->distinct('organization')
138 138
             ->hydrate(true)
139
-           ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]);
139
+           ->field('status.name')->notIn([StatusInterface::EXPIRED, StatusInterface::INACTIVE]);
140 140
 
141 141
         $q = $qb->getQuery();
142 142
         $r = $q->execute();
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $qb = $this->dm->createQueryBuilder('Organizations\Entity\Organization');
146 146
         $qb->field('_id')->in($r);
147 147
         if ($term) {
148
-            $qb->field('_organizationName')->equals(new \MongoRegex('/' . addslashes($term) . '/i'));
148
+            $qb->field('_organizationName')->equals(new \MongoRegex('/'.addslashes($term).'/i'));
149 149
         }
150 150
 
151 151
         $q = $qb->getQuery();
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      */
203 203
     public function createQueryBuilder($isDeleted = false)
204 204
     {
205
-        $qb =  parent::createQueryBuilder();
205
+        $qb = parent::createQueryBuilder();
206 206
 
207 207
         if (null !== $isDeleted) {
208 208
             $qb->addAnd(
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * Look for an drafted Document of a given user
81 81
      *
82
-     * @param $user
82
+     * @param \Auth\Entity\User $user
83 83
      * @return \Jobs\Entity\Job|null
84 84
      */
85 85
     public function findDraft($user)
Please login to merge, or discard this patch.
module/Geo/config/module.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
                  * for multiple paths.
23 23
                  * example https://github.com/doctrine/DoctrineORMModule
24 24
                  */
25
-                'paths' => [ __DIR__ . '/../src/Geo/Entity'],
25
+                'paths' => [__DIR__.'/../src/Geo/Entity'],
26 26
             ],
27 27
         ],
28 28
     ],
Please login to merge, or discard this patch.
module/Geo/src/autoload_classmap.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php
2 2
 // Generated by ZF2's ./bin/classmap_generator.php
3 3
 return array(
4
-    'Geo\Controller\IndexController'                => __DIR__ . '/Geo/Controller/IndexController.php',
5
-    'Geo\Entity\Geometry\Point'                     => __DIR__ . '/Geo/Entity/Geometry/Point.php',
6
-    'Geo\Factory\Controller\IndexControllerFactory' => __DIR__ . '/Geo/Factory/Controller/IndexControllerFactory.php',
7
-    'Geo\Factory\Form\GeoSelectFactory'             => __DIR__ . '/Geo/Factory/Form/GeoSelectFactory.php',
8
-    'Geo\Factory\Listener\AjaxQueryFactory'         => __DIR__ . '/Geo/Factory/Listener/AjaxQueryFactory.php',
9
-    'Geo\Factory\Service\ClientFactory'             => __DIR__ . '/Geo/Factory/Service/ClientFactory.php',
10
-    'Geo\Form\GeoSelect'                            => __DIR__ . '/Geo/Form/GeoSelect.php',
11
-    'Geo\Form\GeoSelectHydratorStrategy'            => __DIR__ . '/Geo/Form/GeoSelectHydratorStrategy.php',
12
-    'Geo\Form\GeoSelectSimple'                      => __DIR__ . '/Geo/Form/GeoSelectSimple.php',
13
-    'Geo\Listener\AjaxQuery'                        => __DIR__ . '/Geo/Listener/AjaxQuery.php',
14
-    'Geo\Options\ModuleOptions'                     => __DIR__ . '/Geo/Options/ModuleOptions.php',
15
-    'Geo\Service\AbstractClient'                    => __DIR__ . '/Geo/Service/AbstractClient.php',
16
-    'Geo\Service\Geo'                               => __DIR__ . '/Geo/Service/Geo.php',
17
-    'Geo\Service\Photon'                            => __DIR__ . '/Geo/Service/Photon.php',
4
+    'Geo\Controller\IndexController'                => __DIR__.'/Geo/Controller/IndexController.php',
5
+    'Geo\Entity\Geometry\Point'                     => __DIR__.'/Geo/Entity/Geometry/Point.php',
6
+    'Geo\Factory\Controller\IndexControllerFactory' => __DIR__.'/Geo/Factory/Controller/IndexControllerFactory.php',
7
+    'Geo\Factory\Form\GeoSelectFactory'             => __DIR__.'/Geo/Factory/Form/GeoSelectFactory.php',
8
+    'Geo\Factory\Listener\AjaxQueryFactory'         => __DIR__.'/Geo/Factory/Listener/AjaxQueryFactory.php',
9
+    'Geo\Factory\Service\ClientFactory'             => __DIR__.'/Geo/Factory/Service/ClientFactory.php',
10
+    'Geo\Form\GeoSelect'                            => __DIR__.'/Geo/Form/GeoSelect.php',
11
+    'Geo\Form\GeoSelectHydratorStrategy'            => __DIR__.'/Geo/Form/GeoSelectHydratorStrategy.php',
12
+    'Geo\Form\GeoSelectSimple'                      => __DIR__.'/Geo/Form/GeoSelectSimple.php',
13
+    'Geo\Listener\AjaxQuery'                        => __DIR__.'/Geo/Listener/AjaxQuery.php',
14
+    'Geo\Options\ModuleOptions'                     => __DIR__.'/Geo/Options/ModuleOptions.php',
15
+    'Geo\Service\AbstractClient'                    => __DIR__.'/Geo/Service/AbstractClient.php',
16
+    'Geo\Service\Geo'                               => __DIR__.'/Geo/Service/Geo.php',
17
+    'Geo\Service\Photon'                            => __DIR__.'/Geo/Service/Photon.php',
18 18
 );
Please login to merge, or discard this patch.
module/Applications/src/Applications/Form/SettingsFieldset.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             array('type' => 'Zend\Form\Element\Textarea',
68 68
                         'name' => 'mailConfirmationText',
69 69
                          'options' => array('label' => /* @translate */ 'Confirmation mail text',
70
-                                            'description' => /* @translate */ 'default text of the acknowledgment of receipt mail to the applicant. The following variables can be used:<br><ul><li>##anrede_formell## = salutation. Includes gender, firstname and lastname.<li>##anrede_informell## = salutation. Includes fistname and lastname.</li><li>##job_title## = title of the jobs</li><li>##name## = name of the applicant.</li><li>##date## = date of recipt of the application.</li><li>##link## = Link to the application details</li></ul>' ))
70
+                                            'description' => /* @translate */ 'default text of the acknowledgment of receipt mail to the applicant. The following variables can be used:<br><ul><li>##anrede_formell## = salutation. Includes gender, firstname and lastname.<li>##anrede_informell## = salutation. Includes fistname and lastname.</li><li>##job_title## = title of the jobs</li><li>##name## = name of the applicant.</li><li>##date## = date of recipt of the application.</li><li>##link## = Link to the application details</li></ul>'))
71 71
         );
72 72
         
73 73
         $this->add(
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
     public function init()
43 43
     {
44 44
         $this->setName('emails')
45
-             ->setLabel(/* @translate */ 'E-Mail Notifications');
45
+                ->setLabel(/* @translate */ 'E-Mail Notifications');
46 46
 	    
47 47
         $this->add(
48 48
             array('type' => Checkbox::class,
49 49
                 'name' => 'mailAccess',
50 50
                 'label' => 'foo',
51 51
                 'options' => array('label' => /* @translate */ 'receive E-Mail alert',
52
-                                   'long_label' => /* @translate */ 'if checked, you\'ll be informed by mail about new applications.'),
52
+                                    'long_label' => /* @translate */ 'if checked, you\'ll be informed by mail about new applications.'),
53 53
                 )
54 54
         );
55 55
         $this->add(
@@ -63,13 +63,13 @@  discard block
 block discarded – undo
63 63
             array('type' => 'Zend\Form\Element\Checkbox',
64 64
                 'name' => 'autoConfirmMail',
65 65
                 'options' => array('label' => /* @translate */ 'confirm application immidiatly after submit',
66
-                                   'long_label' => /* @translate */ 'if checked, an application is immediatly confirmed. If unchecked confirmation is the duty of the recruiter.'),
66
+                                    'long_label' => /* @translate */ 'if checked, an application is immediatly confirmed. If unchecked confirmation is the duty of the recruiter.'),
67 67
                 )
68 68
         );
69 69
         $this->add(
70 70
             array('type' => 'Zend\Form\Element\Textarea',
71 71
                         'name' => 'mailConfirmationText',
72
-                         'options' => array('label' => /* @translate */ 'Confirmation mail text',
72
+                            'options' => array('label' => /* @translate */ 'Confirmation mail text',
73 73
                                             'description' => /* @translate */ 'default text of the acknowledgment of receipt mail to the applicant. The following variables can be used:<br><ul><li>##anrede_formell## = salutation. Includes gender, firstname and lastname.<li>##anrede_informell## = salutation. Includes fistname and lastname.</li><li>##job_title## = title of the jobs</li><li>##name## = name of the applicant.</li><li>##date## = date of recipt of the application.</li><li>##link## = Link to the application details</li></ul>' ))
74 74
         );
75 75
         
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
 
118 118
         $this->add(
119 119
             array(
120
-	            'type' => 'Settings/DisableElementsCapableFormSettingsFieldset',
121
-	            'name' => 'applyFormSettings',
122
-	            'options' => array(
120
+                'type' => 'Settings/DisableElementsCapableFormSettingsFieldset',
121
+                'name' => 'applyFormSettings',
122
+                'options' => array(
123 123
 	
124
-	            )
124
+                )
125 125
             )
126 126
         );
127 127
     }
Please login to merge, or discard this patch.
module/Cv/src/autoload_classmap.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -1,63 +1,63 @@
 block discarded – undo
1 1
 <?php
2 2
 // Generated by ZF2's ./bin/classmap_generator.php
3 3
 return array(
4
-    'Cv\Acl\Assertion\MayChangeCv'                           => __DIR__ . '/Cv/Acl/Assertion/MayChangeCv.php',
5
-    'Cv\Acl\Assertion\MayViewCv'                             => __DIR__ . '/Cv/Acl/Assertion/MayViewCv.php',
6
-    'Cv\Controller\IndexController'                          => __DIR__ . '/Cv/Controller/IndexController.php',
7
-    'Cv\Controller\ManageController'                         => __DIR__ . '/Cv/Controller/ManageController.php',
8
-    'Cv\Controller\ViewController'                           => __DIR__ . '/Cv/Controller/ViewController.php',
9
-    'Cv\Entity\Attachment'                                   => __DIR__ . '/Cv/Entity/Attachment.php',
10
-    'Cv\Entity\ComputerSkill'                                => __DIR__ . '/Cv/Entity/ComputerSkill.php',
11
-    'Cv\Entity\ComputerSkillInterface'                       => __DIR__ . '/Cv/Entity/ComputerSkillInterface.php',
12
-    'Cv\Entity\Contact'                                      => __DIR__ . '/Cv/Entity/Contact.php',
13
-    'Cv\Entity\ContactImage'                                 => __DIR__ . '/Cv/Entity/ContactImage.php',
14
-    'Cv\Entity\Cv'                                           => __DIR__ . '/Cv/Entity/Cv.php',
15
-    'Cv\Entity\CvInterface'                                  => __DIR__ . '/Cv/Entity/CvInterface.php',
16
-    'Cv\Entity\Education'                                    => __DIR__ . '/Cv/Entity/Education.php',
17
-    'Cv\Entity\EducationInterface'                           => __DIR__ . '/Cv/Entity/EducationInterface.php',
18
-    'Cv\Entity\Employment'                                   => __DIR__ . '/Cv/Entity/Employment.php',
19
-    'Cv\Entity\EmploymentInterface'                          => __DIR__ . '/Cv/Entity/EmploymentInterface.php',
20
-    'Cv\Entity\Language'                                     => __DIR__ . '/Cv/Entity/Language.php',
21
-    'Cv\Entity\LanguageInterface'                            => __DIR__ . '/Cv/Entity/LanguageInterface.php',
22
-    'Cv\Entity\Location'                                     => __DIR__ . '/Cv/Entity/Location.php',
23
-    'Cv\Entity\NativeLanguage'                               => __DIR__ . '/Cv/Entity/NativeLanguage.php',
24
-    'Cv\Entity\NativeLanguageInterface'                      => __DIR__ . '/Cv/Entity/NativeLanguageInterface.php',
25
-    'Cv\Entity\PreferredJob'                                 => __DIR__ . '/Cv/Entity/PreferredJob.php',
26
-    'Cv\Entity\PreferredJobInterface'                        => __DIR__ . '/Cv/Entity/PreferredJobInterface.php',
27
-    'Cv\Entity\Skill'                                        => __DIR__ . '/Cv/Entity/Skill.php',
28
-    'Cv\Entity\SkillInterface'                               => __DIR__ . '/Cv/Entity/SkillInterface.php',
29
-    'Cv\Entity\Status'                                       => __DIR__ . '/Cv/Entity/Status.php',
30
-    'Cv\Entity\StatusInterface'                              => __DIR__ . '/Cv/Entity/StatusInterface.php',
31
-    'Cv\Factory\Controller\IndexControllerFactory'           => __DIR__ . '/Cv/Factory/Controller/IndexControllerFactory.php',
32
-    'Cv\Factory\Controller\ViewControllerFactory'            => __DIR__ . '/Cv/Factory/Controller/ViewControllerFactory.php',
33
-    'Cv\Factory\Form\AttachmentsFormFactory'                 => __DIR__ . '/Cv/Factory/Form/AttachmentsFormFactory.php',
34
-    'Cv\Factory\Form\CvContactImageFactory'                  => __DIR__ . '/Cv/Factory/Form/CvContactImageFactory.php',
35
-    'Cv\Factory\Form\EducationCollectionFactory'             => __DIR__ . '/Cv/Factory/Form/EducationCollectionFactory.php',
36
-    'Cv\Factory\Form\EmploymentCollectionFactory'            => __DIR__ . '/Cv/Factory/Form/EmploymentCollectionFactory.php',
37
-    'Cv\Factory\Form\LanguageSkillCollectionFactory'         => __DIR__ . '/Cv/Factory/Form/LanguageSkillCollectionFactory.php',
38
-    'Cv\Factory\Form\SkillCollectionFactory'                 => __DIR__ . '/Cv/Factory/Form/SkillCollectionFactory.php',
39
-    'Cv\Form\CvContainer'                                    => __DIR__ . '/Cv/Form/CvContainer.php',
40
-    'Cv\Form\EducationFieldset'                              => __DIR__ . '/Cv/Form/EducationFieldset.php',
41
-    'Cv\Form\EducationForm'                                  => __DIR__ . '/Cv/Form/EducationForm.php',
42
-    'Cv\Form\EmploymentFieldset'                             => __DIR__ . '/Cv/Form/EmploymentFieldset.php',
43
-    'Cv\Form\EmploymentForm'                                 => __DIR__ . '/Cv/Form/EmploymentForm.php',
44
-    'Cv\Form\InputFilter\Education'                          => __DIR__ . '/Cv/Form/InputFilter/Education.php',
45
-    'Cv\Form\InputFilter\Employment'                         => __DIR__ . '/Cv/Form/InputFilter/Employment.php',
46
-    'Cv\Form\LanguageSkillFieldset'                          => __DIR__ . '/Cv/Form/LanguageSkillFieldset.php',
47
-    'Cv\Form\LanguageSkillForm'                              => __DIR__ . '/Cv/Form/LanguageSkillForm.php',
48
-    'Cv\Form\NativeLanguageFieldset'                         => __DIR__ . '/Cv/Form/NativeLanguageFieldset.php',
49
-    'Cv\Form\NativeLanguageForm'                             => __DIR__ . '/Cv/Form/NativeLanguageForm.php',
50
-    'Cv\Form\PreferredJobFieldset'                           => __DIR__ . '/Cv/Form/PreferredJobFieldset.php',
51
-    'Cv\Form\PreferredJobForm'                               => __DIR__ . '/Cv/Form/PreferredJobForm.php',
52
-    'Cv\Form\SearchForm'                                     => __DIR__ . '/Cv/Form/SearchForm.php',
53
-    'Cv\Form\SkillFieldset'                                  => __DIR__ . '/Cv/Form/SkillFieldset.php',
54
-    'Cv\Form\SkillForm'                                      => __DIR__ . '/Cv/Form/SkillForm.php',
55
-    'Cv\Options\ModuleOptions'                               => __DIR__ . '/Cv/Options/ModuleOptions.php',
56
-    'Cv\Paginator\PaginatorFactory'                          => __DIR__ . '/Cv/Paginator/PaginatorFactory.php',
57
-    'Cv\Repository\Cv'                                       => __DIR__ . '/Cv/Repository/Cv.php',
58
-    'Cv\Repository\Event\DeleteRemovedAttachmentsSubscriber' => __DIR__ . '/Cv/Repository/Event/DeleteRemovedAttachmentsSubscriber.php',
59
-    'Cv\Repository\Event\InjectContactListener'              => __DIR__ . '/Cv/Repository/Event/InjectContactListener.php',
60
-    'Cv\Repository\Event\UpdateFilesPermissionsSubscriber'   => __DIR__ . '/Cv/Repository/Event/UpdateFilesPermissionsSubscriber.php',
61
-    'Cv\Repository\Filter\PaginationQuery'                   => __DIR__ . '/Cv/Repository/Filter/PaginationQuery.php',
62
-    'Cv\Repository\Filter\PaginationQueryFactory'            => __DIR__ . '/Cv/Repository/Filter/PaginationQueryFactory.php',
4
+    'Cv\Acl\Assertion\MayChangeCv'                           => __DIR__.'/Cv/Acl/Assertion/MayChangeCv.php',
5
+    'Cv\Acl\Assertion\MayViewCv'                             => __DIR__.'/Cv/Acl/Assertion/MayViewCv.php',
6
+    'Cv\Controller\IndexController'                          => __DIR__.'/Cv/Controller/IndexController.php',
7
+    'Cv\Controller\ManageController'                         => __DIR__.'/Cv/Controller/ManageController.php',
8
+    'Cv\Controller\ViewController'                           => __DIR__.'/Cv/Controller/ViewController.php',
9
+    'Cv\Entity\Attachment'                                   => __DIR__.'/Cv/Entity/Attachment.php',
10
+    'Cv\Entity\ComputerSkill'                                => __DIR__.'/Cv/Entity/ComputerSkill.php',
11
+    'Cv\Entity\ComputerSkillInterface'                       => __DIR__.'/Cv/Entity/ComputerSkillInterface.php',
12
+    'Cv\Entity\Contact'                                      => __DIR__.'/Cv/Entity/Contact.php',
13
+    'Cv\Entity\ContactImage'                                 => __DIR__.'/Cv/Entity/ContactImage.php',
14
+    'Cv\Entity\Cv'                                           => __DIR__.'/Cv/Entity/Cv.php',
15
+    'Cv\Entity\CvInterface'                                  => __DIR__.'/Cv/Entity/CvInterface.php',
16
+    'Cv\Entity\Education'                                    => __DIR__.'/Cv/Entity/Education.php',
17
+    'Cv\Entity\EducationInterface'                           => __DIR__.'/Cv/Entity/EducationInterface.php',
18
+    'Cv\Entity\Employment'                                   => __DIR__.'/Cv/Entity/Employment.php',
19
+    'Cv\Entity\EmploymentInterface'                          => __DIR__.'/Cv/Entity/EmploymentInterface.php',
20
+    'Cv\Entity\Language'                                     => __DIR__.'/Cv/Entity/Language.php',
21
+    'Cv\Entity\LanguageInterface'                            => __DIR__.'/Cv/Entity/LanguageInterface.php',
22
+    'Cv\Entity\Location'                                     => __DIR__.'/Cv/Entity/Location.php',
23
+    'Cv\Entity\NativeLanguage'                               => __DIR__.'/Cv/Entity/NativeLanguage.php',
24
+    'Cv\Entity\NativeLanguageInterface'                      => __DIR__.'/Cv/Entity/NativeLanguageInterface.php',
25
+    'Cv\Entity\PreferredJob'                                 => __DIR__.'/Cv/Entity/PreferredJob.php',
26
+    'Cv\Entity\PreferredJobInterface'                        => __DIR__.'/Cv/Entity/PreferredJobInterface.php',
27
+    'Cv\Entity\Skill'                                        => __DIR__.'/Cv/Entity/Skill.php',
28
+    'Cv\Entity\SkillInterface'                               => __DIR__.'/Cv/Entity/SkillInterface.php',
29
+    'Cv\Entity\Status'                                       => __DIR__.'/Cv/Entity/Status.php',
30
+    'Cv\Entity\StatusInterface'                              => __DIR__.'/Cv/Entity/StatusInterface.php',
31
+    'Cv\Factory\Controller\IndexControllerFactory'           => __DIR__.'/Cv/Factory/Controller/IndexControllerFactory.php',
32
+    'Cv\Factory\Controller\ViewControllerFactory'            => __DIR__.'/Cv/Factory/Controller/ViewControllerFactory.php',
33
+    'Cv\Factory\Form\AttachmentsFormFactory'                 => __DIR__.'/Cv/Factory/Form/AttachmentsFormFactory.php',
34
+    'Cv\Factory\Form\CvContactImageFactory'                  => __DIR__.'/Cv/Factory/Form/CvContactImageFactory.php',
35
+    'Cv\Factory\Form\EducationCollectionFactory'             => __DIR__.'/Cv/Factory/Form/EducationCollectionFactory.php',
36
+    'Cv\Factory\Form\EmploymentCollectionFactory'            => __DIR__.'/Cv/Factory/Form/EmploymentCollectionFactory.php',
37
+    'Cv\Factory\Form\LanguageSkillCollectionFactory'         => __DIR__.'/Cv/Factory/Form/LanguageSkillCollectionFactory.php',
38
+    'Cv\Factory\Form\SkillCollectionFactory'                 => __DIR__.'/Cv/Factory/Form/SkillCollectionFactory.php',
39
+    'Cv\Form\CvContainer'                                    => __DIR__.'/Cv/Form/CvContainer.php',
40
+    'Cv\Form\EducationFieldset'                              => __DIR__.'/Cv/Form/EducationFieldset.php',
41
+    'Cv\Form\EducationForm'                                  => __DIR__.'/Cv/Form/EducationForm.php',
42
+    'Cv\Form\EmploymentFieldset'                             => __DIR__.'/Cv/Form/EmploymentFieldset.php',
43
+    'Cv\Form\EmploymentForm'                                 => __DIR__.'/Cv/Form/EmploymentForm.php',
44
+    'Cv\Form\InputFilter\Education'                          => __DIR__.'/Cv/Form/InputFilter/Education.php',
45
+    'Cv\Form\InputFilter\Employment'                         => __DIR__.'/Cv/Form/InputFilter/Employment.php',
46
+    'Cv\Form\LanguageSkillFieldset'                          => __DIR__.'/Cv/Form/LanguageSkillFieldset.php',
47
+    'Cv\Form\LanguageSkillForm'                              => __DIR__.'/Cv/Form/LanguageSkillForm.php',
48
+    'Cv\Form\NativeLanguageFieldset'                         => __DIR__.'/Cv/Form/NativeLanguageFieldset.php',
49
+    'Cv\Form\NativeLanguageForm'                             => __DIR__.'/Cv/Form/NativeLanguageForm.php',
50
+    'Cv\Form\PreferredJobFieldset'                           => __DIR__.'/Cv/Form/PreferredJobFieldset.php',
51
+    'Cv\Form\PreferredJobForm'                               => __DIR__.'/Cv/Form/PreferredJobForm.php',
52
+    'Cv\Form\SearchForm'                                     => __DIR__.'/Cv/Form/SearchForm.php',
53
+    'Cv\Form\SkillFieldset'                                  => __DIR__.'/Cv/Form/SkillFieldset.php',
54
+    'Cv\Form\SkillForm'                                      => __DIR__.'/Cv/Form/SkillForm.php',
55
+    'Cv\Options\ModuleOptions'                               => __DIR__.'/Cv/Options/ModuleOptions.php',
56
+    'Cv\Paginator\PaginatorFactory'                          => __DIR__.'/Cv/Paginator/PaginatorFactory.php',
57
+    'Cv\Repository\Cv'                                       => __DIR__.'/Cv/Repository/Cv.php',
58
+    'Cv\Repository\Event\DeleteRemovedAttachmentsSubscriber' => __DIR__.'/Cv/Repository/Event/DeleteRemovedAttachmentsSubscriber.php',
59
+    'Cv\Repository\Event\InjectContactListener'              => __DIR__.'/Cv/Repository/Event/InjectContactListener.php',
60
+    'Cv\Repository\Event\UpdateFilesPermissionsSubscriber'   => __DIR__.'/Cv/Repository/Event/UpdateFilesPermissionsSubscriber.php',
61
+    'Cv\Repository\Filter\PaginationQuery'                   => __DIR__.'/Cv/Repository/Filter/PaginationQuery.php',
62
+    'Cv\Repository\Filter\PaginationQueryFactory'            => __DIR__.'/Cv/Repository/Filter/PaginationQueryFactory.php',
63 63
 );
Please login to merge, or discard this patch.
module/Auth/src/autoload_classmap.php 1 patch
Spacing   +152 added lines, -152 removed lines patch added patch discarded remove patch
@@ -1,156 +1,156 @@
 block discarded – undo
1 1
 <?php
2 2
 // Generated by ZF2's ./bin/classmap_generator.php
3 3
 return array(
4
-    'Acl\Assertion\AbstractEventManagerAwareAssertion'              => __DIR__ . '/Acl/Assertion/AbstractEventManagerAwareAssertion.php',
5
-    'Acl\Assertion\AssertionEvent'                                  => __DIR__ . '/Acl/Assertion/AssertionEvent.php',
6
-    'Acl\Assertion\AssertionManager'                                => __DIR__ . '/Acl/Assertion/AssertionManager.php',
7
-    'Acl\Assertion\AssertionManagerFactory'                         => __DIR__ . '/Acl/Assertion/AssertionManagerFactory.php',
8
-    'Acl\Config'                                                    => __DIR__ . '/Acl/Config.php',
9
-    'Acl\Controller\Plugin\Acl'                                     => __DIR__ . '/Acl/Controller/Plugin/Acl.php',
10
-    'Acl\Controller\Plugin\AclFactory'                              => __DIR__ . '/Acl/Controller/Plugin/AclFactory.php',
11
-    'Acl\Factory\Service\AclFactory'                                => __DIR__ . '/Acl/Factory/Service/AclFactory.php',
12
-    'Acl\Factory\View\Helper\AclFactory'                            => __DIR__ . '/Acl/Factory/View/Helper/AclFactory.php',
13
-    'Acl\Listener\CheckPermissionsListener'                         => __DIR__ . '/Acl/Listener/CheckPermissionsListener.php',
14
-    'Acl\Listener\CheckPermissionsListenerFactory'                  => __DIR__ . '/Acl/Listener/CheckPermissionsListenerFactory.php',
15
-    'Acl\Service\Acl'                                               => __DIR__ . '/Acl/Service/Acl.php',
16
-    'Acl\View\Helper\Acl'                                           => __DIR__ . '/Acl/View/Helper/Acl.php',
17
-    'Auth\Adapter\ExternalApplication'                              => __DIR__ . '/Auth/Adapter/ExternalApplication.php',
18
-    'Auth\Adapter\HybridAuth'                                       => __DIR__ . '/Auth/Adapter/HybridAuth.php',
19
-    'Auth\Adapter\User'                                             => __DIR__ . '/Auth/Adapter/User.php',
20
-    'Auth\AuthenticationService'                                    => __DIR__ . '/Auth/AuthenticationService.php',
21
-    'Auth\Controller\ForgotPasswordController'                      => __DIR__ . '/Auth/Controller/ForgotPasswordController.php',
22
-    'Auth\Controller\GotoResetPasswordController'                   => __DIR__ . '/Auth/Controller/GotoResetPasswordController.php',
23
-    'Auth\Controller\HybridAuthController'                          => __DIR__ . '/Auth/Controller/HybridAuthController.php',
24
-    'Auth\Controller\IndexController'                               => __DIR__ . '/Auth/Controller/IndexController.php',
25
-    'Auth\Controller\ManageController'                              => __DIR__ . '/Auth/Controller/ManageController.php',
26
-    'Auth\Controller\ManageGroupsController'                        => __DIR__ . '/Auth/Controller/ManageGroupsController.php',
27
-    'Auth\Controller\PasswordController'                            => __DIR__ . '/Auth/Controller/PasswordController.php',
28
-    'Auth\Controller\Plugin\Auth'                                   => __DIR__ . '/Auth/Controller/Plugin/Auth.php',
29
-    'Auth\Controller\Plugin\LoginFilter'                            => __DIR__ . '/Auth/Controller/Plugin/LoginFilter.php',
30
-    'Auth\Controller\Plugin\OAuth'                                  => __DIR__ . '/Auth/Controller/Plugin/OAuth.php',
31
-    'Auth\Controller\Plugin\Service\SocialProfilesFactory'          => __DIR__ . '/Auth/Controller/Plugin/Service/SocialProfilesFactory.php',
32
-    'Auth\Controller\Plugin\SocialProfiles'                         => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles.php',
33
-    'Auth\Controller\Plugin\SocialProfiles\AbstractAdapter'         => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/AbstractAdapter.php',
34
-    'Auth\Controller\Plugin\SocialProfiles\Facebook'                => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/Facebook.php',
35
-    'Auth\Controller\Plugin\SocialProfiles\LinkedIn'                => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/LinkedIn.php',
36
-    'Auth\Controller\Plugin\SocialProfiles\Xing'                    => __DIR__ . '/Auth/Controller/Plugin/SocialProfiles/Xing.php',
37
-    'Auth\Controller\Plugin\UserSwitcher'                           => __DIR__ . '/Auth/Controller/Plugin/UserSwitcher.php',
38
-    'Auth\Controller\RegisterConfirmationController'                => __DIR__ . '/Auth/Controller/RegisterConfirmationController.php',
39
-    'Auth\Controller\RegisterController'                            => __DIR__ . '/Auth/Controller/RegisterController.php',
40
-    'Auth\Controller\RemoveController'                              => __DIR__ . '/Auth/Controller/RemoveController.php',
41
-    'Auth\Controller\SocialProfilesController'                      => __DIR__ . '/Auth/Controller/SocialProfilesController.php',
42
-    'Auth\Controller\UsersController'                               => __DIR__ . '/Auth/Controller/UsersController.php',
43
-    'Auth\Dependency\ListInterface'                                 => __DIR__ . '/Auth/Dependency/ListInterface.php',
44
-    'Auth\Dependency\ListItem'                                      => __DIR__ . '/Auth/Dependency/ListItem.php',
45
-    'Auth\Dependency\Manager'                                       => __DIR__ . '/Auth/Dependency/Manager.php',
46
-    'Auth\Entity\AnonymousUser'                                     => __DIR__ . '/Auth/Entity/AnonymousUser.php',
47
-    'Auth\Entity\AuthSession'                                       => __DIR__ . '/Auth/Entity/AuthSession.php',
48
-    'Auth\Entity\Filter\CredentialFilter'                           => __DIR__ . '/Auth/Entity/Filter/CredentialFilter.php',
49
-    'Auth\Entity\Filter\UserToSearchResult'                         => __DIR__ . '/Auth/Entity/Filter/UserToSearchResult.php',
50
-    'Auth\Entity\Group'                                             => __DIR__ . '/Auth/Entity/Group.php',
51
-    'Auth\Entity\GroupInterface'                                    => __DIR__ . '/Auth/Entity/GroupInterface.php',
52
-    'Auth\Entity\Info'                                              => __DIR__ . '/Auth/Entity/Info.php',
53
-    'Auth\Entity\InfoInterface'                                     => __DIR__ . '/Auth/Entity/InfoInterface.php',
54
-    'Auth\Entity\SocialProfiles\AbstractProfile'                    => __DIR__ . '/Auth/Entity/SocialProfiles/AbstractProfile.php',
55
-    'Auth\Entity\SocialProfiles\Facebook'                           => __DIR__ . '/Auth/Entity/SocialProfiles/Facebook.php',
56
-    'Auth\Entity\SocialProfiles\LinkedIn'                           => __DIR__ . '/Auth/Entity/SocialProfiles/LinkedIn.php',
57
-    'Auth\Entity\SocialProfiles\ProfileInterface'                   => __DIR__ . '/Auth/Entity/SocialProfiles/ProfileInterface.php',
58
-    'Auth\Entity\SocialProfiles\Xing'                               => __DIR__ . '/Auth/Entity/SocialProfiles/Xing.php',
59
-    'Auth\Entity\Status'                                            => __DIR__ . '/Auth/Entity/Status.php',
60
-    'Auth\Entity\Token'                                             => __DIR__ . '/Auth/Entity/Token.php',
61
-    'Auth\Entity\User'                                              => __DIR__ . '/Auth/Entity/User.php',
62
-    'Auth\Entity\UserImage'                                         => __DIR__ . '/Auth/Entity/UserImage.php',
63
-    'Auth\Entity\UserInterface'                                     => __DIR__ . '/Auth/Entity/UserInterface.php',
64
-    'Auth\Exception\ExceptionInterface'                             => __DIR__ . '/Auth/Exception/ExceptionInterface.php',
65
-    'Auth\Exception\UnauthorizedAccessException'                    => __DIR__ . '/Auth/Exception/UnauthorizedAccessException.php',
66
-    'Auth\Exception\UnauthorizedImageAccessException'               => __DIR__ . '/Auth/Exception/UnauthorizedImageAccessException.php',
67
-    'Auth\Exception\UserDeactivatedException'                       => __DIR__ . '/Auth/Exception/UserDeactivatedException.php',
68
-    'Auth\Factory\Adapter\ExternalApplicationAdapterFactory'        => __DIR__ . '/Auth/Factory/Adapter/ExternalApplicationAdapterFactory.php',
69
-    'Auth\Factory\Adapter\HybridAuthAdapterFactory'                 => __DIR__ . '/Auth/Factory/Adapter/HybridAuthAdapterFactory.php',
70
-    'Auth\Factory\Adapter\UserAdapterFactory'                       => __DIR__ . '/Auth/Factory/Adapter/UserAdapterFactory.php',
71
-    'Auth\Factory\Controller\ForgotPasswordControllerFactory'       => __DIR__ . '/Auth/Factory/Controller/ForgotPasswordControllerFactory.php',
72
-    'Auth\Factory\Controller\GotoResetPasswordControllerFactory'    => __DIR__ . '/Auth/Factory/Controller/GotoResetPasswordControllerFactory.php',
73
-    'Auth\Factory\Controller\IndexControllerFactory'                => __DIR__ . '/Auth/Factory/Controller/IndexControllerFactory.php',
74
-    'Auth\Factory\Controller\PasswordControllerFactory'             => __DIR__ . '/Auth/Factory/Controller/PasswordControllerFactory.php',
75
-    'Auth\Factory\Controller\Plugin\UserSwitcherFactory'            => __DIR__ . '/Auth/Factory/Controller/Plugin/UserSwitcherFactory.php',
76
-    'Auth\Factory\Controller\RegisterConfirmationControllerFactory' => __DIR__ . '/Auth/Factory/Controller/RegisterConfirmationControllerFactory.php',
77
-    'Auth\Factory\Controller\RegisterControllerFactory'             => __DIR__ . '/Auth/Factory/Controller/RegisterControllerFactory.php',
78
-    'Auth\Factory\Controller\RemoveControllerFactory'               => __DIR__ . '/Auth/Factory/Controller/RemoveControllerFactory.php',
79
-    'Auth\Factory\Controller\UsersControllerFactory'                => __DIR__ . '/Auth/Factory/Controller/UsersControllerFactory.php',
80
-    'Auth\Factory\Dependency\ManagerFactory'                        => __DIR__ . '/Auth/Factory/Dependency/ManagerFactory.php',
81
-    'Auth\Factory\Form\ForgotPasswordFactory'                       => __DIR__ . '/Auth/Factory/Form/ForgotPasswordFactory.php',
82
-    'Auth\Factory\Form\LoginFactory'                                => __DIR__ . '/Auth/Factory/Form/LoginFactory.php',
83
-    'Auth\Factory\Form\RegisterFactory'                             => __DIR__ . '/Auth/Factory/Form/RegisterFactory.php',
84
-    'Auth\Factory\Form\RoleSelectFactory'                           => __DIR__ . '/Auth/Factory/Form/RoleSelectFactory.php',
85
-    'Auth\Factory\Form\SocialProfilesFieldsetFactory'               => __DIR__ . '/Auth/Factory/Form/SocialProfilesFieldsetFactory.php',
86
-    'Auth\Factory\Form\UserInfoFieldsetFactory'                     => __DIR__ . '/Auth/Factory/Form/UserInfoFieldsetFactory.php',
87
-    'Auth\Factory\Form\UserStatusFieldsetFactory'                   => __DIR__ . '/Auth/Factory/Form/UserStatusFieldsetFactory.php',
88
-    'Auth\Factory\Listener\ExceptionStrategyFactory'                => __DIR__ . '/Auth/Factory/Listener/ExceptionStrategyFactory.php',
89
-    'Auth\Factory\Listener\MailForgotPasswordFactory'               => __DIR__ . '/Auth/Factory/Listener/MailForgotPasswordFactory.php',
90
-    'Auth\Factory\Listener\SendRegistrationNotificationsFactory'    => __DIR__ . '/Auth/Factory/Listener/SendRegistrationNotificationsFactory.php',
91
-    'Auth\Factory\ModuleOptionsFactory'                             => __DIR__ . '/Auth/Factory/ModuleOptionsFactory.php',
92
-    'Auth\Factory\Service\AuthenticationServiceFactory'             => __DIR__ . '/Auth/Factory/Service/AuthenticationServiceFactory.php',
93
-    'Auth\Factory\Service\ForgotPasswordFactory'                    => __DIR__ . '/Auth/Factory/Service/ForgotPasswordFactory.php',
94
-    'Auth\Factory\Service\GotoResetPasswordFactory'                 => __DIR__ . '/Auth/Factory/Service/GotoResetPasswordFactory.php',
95
-    'Auth\Factory\Service\HybridAuthFactory'                        => __DIR__ . '/Auth/Factory/Service/HybridAuthFactory.php',
96
-    'Auth\Factory\Service\RegisterConfirmationFactory'              => __DIR__ . '/Auth/Factory/Service/RegisterConfirmationFactory.php',
97
-    'Auth\Factory\Service\RegisterFactory'                          => __DIR__ . '/Auth/Factory/Service/RegisterFactory.php',
98
-    'Auth\Factory\Service\UserUniqueTokenGeneratorFactory'          => __DIR__ . '/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php',
99
-    'Auth\Factory\View\Helper\AuthFactory'                          => __DIR__ . '/Auth/Factory/View/Helper/AuthFactory.php',
100
-    'Auth\Filter\LoginFilter'                                       => __DIR__ . '/Auth/Filter/LoginFilter.php',
101
-    'Auth\Filter\StripQueryParams'                                  => __DIR__ . '/Auth/Filter/StripQueryParams.php',
102
-    'Auth\Form\Element\SocialProfilesButton'                        => __DIR__ . '/Auth/Form/Element/SocialProfilesButton.php',
103
-    'Auth\Form\ForgotPassword'                                      => __DIR__ . '/Auth/Form/ForgotPassword.php',
104
-    'Auth\Form\ForgotPasswordInputFilter'                           => __DIR__ . '/Auth/Form/ForgotPasswordInputFilter.php',
105
-    'Auth\Form\Group'                                               => __DIR__ . '/Auth/Form/Group.php',
106
-    'Auth\Form\GroupFieldset'                                       => __DIR__ . '/Auth/Form/GroupFieldset.php',
107
-    'Auth\Form\GroupUsersCollection'                                => __DIR__ . '/Auth/Form/GroupUsersCollection.php',
108
-    'Auth\Form\Hydrator\SocialProfilesHydrator'                     => __DIR__ . '/Auth/Form/Hydrator/SocialProfilesHydrator.php',
109
-    'Auth\Form\Hydrator\UserPasswordFieldsetHydrator'               => __DIR__ . '/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php',
110
-    'Auth\Form\Hydrator\UserPasswordHydrator'                       => __DIR__ . '/Auth/Form/Hydrator/UserPasswordHydrator.php',
111
-    'Auth\Form\Login'                                               => __DIR__ . '/Auth/Form/Login.php',
112
-    'Auth\Form\LoginInputFilter'                                    => __DIR__ . '/Auth/Form/LoginInputFilter.php',
113
-    'Auth\Form\Register'                                            => __DIR__ . '/Auth/Form/Register.php',
114
-    'Auth\Form\RegisterInputFilter'                                 => __DIR__ . '/Auth/Form/RegisterInputFilter.php',
115
-    'Auth\Form\SocialProfiles'                                      => __DIR__ . '/Auth/Form/SocialProfiles.php',
116
-    'Auth\Form\SocialProfilesFieldset'                              => __DIR__ . '/Auth/Form/SocialProfilesFieldset.php',
117
-    'Auth\Form\UserBase'                                            => __DIR__ . '/Auth/Form/UserBase.php',
118
-    'Auth\Form\UserBaseFieldset'                                    => __DIR__ . '/Auth/Form/UserBaseFieldset.php',
119
-    'Auth\Form\UserImageFactory'                                    => __DIR__ . '/Auth/Form/UserImageFactory.php',
120
-    'Auth\Form\UserInfo'                                            => __DIR__ . '/Auth/Form/UserInfo.php',
121
-    'Auth\Form\UserInfoContainer'                                   => __DIR__ . '/Auth/Form/UserInfoContainer.php',
122
-    'Auth\Form\UserInfoFieldset'                                    => __DIR__ . '/Auth/Form/UserInfoFieldset.php',
123
-    'Auth\Form\UserPassword'                                        => __DIR__ . '/Auth/Form/UserPassword.php',
124
-    'Auth\Form\UserPasswordFieldset'                                => __DIR__ . '/Auth/Form/UserPasswordFieldset.php',
125
-    'Auth\Form\UserProfileContainer'                                => __DIR__ . '/Auth/Form/UserProfileContainer.php',
126
-    'Auth\Form\UserStatus'                                          => __DIR__ . '/Auth/Form/UserStatus.php',
127
-    'Auth\Form\UserStatusContainer'                                 => __DIR__ . '/Auth/Form/UserStatusContainer.php',
128
-    'Auth\Form\UserStatusFieldset'                                  => __DIR__ . '/Auth/Form/UserStatusFieldset.php',
129
-    'Auth\Form\Validator\UniqueGroupName'                           => __DIR__ . '/Auth/Form/Validator/UniqueGroupName.php',
130
-    'Auth\Form\Validator\UniqueGroupNameFactory'                    => __DIR__ . '/Auth/Form/Validator/UniqueGroupNameFactory.php',
131
-    'Auth\Listener\DeactivatedUserListener'                         => __DIR__ . '/Auth/Listener/DeactivatedUserListener.php',
132
-    'Auth\Listener\Events\AuthEvent'                                => __DIR__ . '/Auth/Listener/Events/AuthEvent.php',
133
-    'Auth\Listener\MailForgotPassword'                              => __DIR__ . '/Auth/Listener/MailForgotPassword.php',
134
-    'Auth\Listener\SendRegistrationNotifications'                   => __DIR__ . '/Auth/Listener/SendRegistrationNotifications.php',
135
-    'Auth\Listener\SocialProfilesUnconfiguredErrorListener'         => __DIR__ . '/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php',
136
-    'Auth\Listener\TokenListener'                                   => __DIR__ . '/Auth/Listener/TokenListener.php',
137
-    'Auth\Listener\UnauthorizedAccessListener'                      => __DIR__ . '/Auth/Listener/UnauthorizedAccessListener.php',
138
-    'Auth\Options\CaptchaOptions'                                   => __DIR__ . '/Auth/Options/CaptchaOptions.php',
139
-    'Auth\Options\ModuleOptions'                                    => __DIR__ . '/Auth/Options/ModuleOptions.php',
140
-    'Auth\Repository\Filter\PaginationSearchUsers'                  => __DIR__ . '/Auth/Repository/Filter/PaginationSearchUsers.php',
141
-    'Auth\Repository\User'                                          => __DIR__ . '/Auth/Repository/User.php',
142
-    'Auth\Service\Exception\TokenExpirationDateExpiredException'    => __DIR__ . '/Auth/Service/Exception/TokenExpirationDateExpiredException.php',
143
-    'Auth\Service\Exception\UserAlreadyExistsException'             => __DIR__ . '/Auth/Service/Exception/UserAlreadyExistsException.php',
144
-    'Auth\Service\Exception\UserDoesNotHaveAnEmailException'        => __DIR__ . '/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php',
145
-    'Auth\Service\Exception\UserNotFoundException'                  => __DIR__ . '/Auth/Service/Exception/UserNotFoundException.php',
146
-    'Auth\Service\ForgotPassword'                                   => __DIR__ . '/Auth/Service/ForgotPassword.php',
147
-    'Auth\Service\GotoResetPassword'                                => __DIR__ . '/Auth/Service/GotoResetPassword.php',
148
-    'Auth\Service\Register'                                         => __DIR__ . '/Auth/Service/Register.php',
149
-    'Auth\Service\RegisterConfirmation'                             => __DIR__ . '/Auth/Service/RegisterConfirmation.php',
150
-    'Auth\Service\UserUniqueTokenGenerator'                         => __DIR__ . '/Auth/Service/UserUniqueTokenGenerator.php',
151
-    'Auth\View\Helper\Auth'                                         => __DIR__ . '/Auth/View/Helper/Auth.php',
152
-    'Auth\View\Helper\BuildReferer'                                 => __DIR__ . '/Auth/View/Helper/BuildReferer.php',
153
-    'Auth\View\Helper\LoginInfo'                                    => __DIR__ . '/Auth/View/Helper/LoginInfo.php',
154
-    'Auth\View\Helper\StripQueryParams'                             => __DIR__ . '/Auth/View/Helper/StripQueryParams.php',
155
-    'Auth\View\InjectLoginInfoListener'                             => __DIR__ . '/Auth/View/InjectLoginInfoListener.php',
4
+    'Acl\Assertion\AbstractEventManagerAwareAssertion'              => __DIR__.'/Acl/Assertion/AbstractEventManagerAwareAssertion.php',
5
+    'Acl\Assertion\AssertionEvent'                                  => __DIR__.'/Acl/Assertion/AssertionEvent.php',
6
+    'Acl\Assertion\AssertionManager'                                => __DIR__.'/Acl/Assertion/AssertionManager.php',
7
+    'Acl\Assertion\AssertionManagerFactory'                         => __DIR__.'/Acl/Assertion/AssertionManagerFactory.php',
8
+    'Acl\Config'                                                    => __DIR__.'/Acl/Config.php',
9
+    'Acl\Controller\Plugin\Acl'                                     => __DIR__.'/Acl/Controller/Plugin/Acl.php',
10
+    'Acl\Controller\Plugin\AclFactory'                              => __DIR__.'/Acl/Controller/Plugin/AclFactory.php',
11
+    'Acl\Factory\Service\AclFactory'                                => __DIR__.'/Acl/Factory/Service/AclFactory.php',
12
+    'Acl\Factory\View\Helper\AclFactory'                            => __DIR__.'/Acl/Factory/View/Helper/AclFactory.php',
13
+    'Acl\Listener\CheckPermissionsListener'                         => __DIR__.'/Acl/Listener/CheckPermissionsListener.php',
14
+    'Acl\Listener\CheckPermissionsListenerFactory'                  => __DIR__.'/Acl/Listener/CheckPermissionsListenerFactory.php',
15
+    'Acl\Service\Acl'                                               => __DIR__.'/Acl/Service/Acl.php',
16
+    'Acl\View\Helper\Acl'                                           => __DIR__.'/Acl/View/Helper/Acl.php',
17
+    'Auth\Adapter\ExternalApplication'                              => __DIR__.'/Auth/Adapter/ExternalApplication.php',
18
+    'Auth\Adapter\HybridAuth'                                       => __DIR__.'/Auth/Adapter/HybridAuth.php',
19
+    'Auth\Adapter\User'                                             => __DIR__.'/Auth/Adapter/User.php',
20
+    'Auth\AuthenticationService'                                    => __DIR__.'/Auth/AuthenticationService.php',
21
+    'Auth\Controller\ForgotPasswordController'                      => __DIR__.'/Auth/Controller/ForgotPasswordController.php',
22
+    'Auth\Controller\GotoResetPasswordController'                   => __DIR__.'/Auth/Controller/GotoResetPasswordController.php',
23
+    'Auth\Controller\HybridAuthController'                          => __DIR__.'/Auth/Controller/HybridAuthController.php',
24
+    'Auth\Controller\IndexController'                               => __DIR__.'/Auth/Controller/IndexController.php',
25
+    'Auth\Controller\ManageController'                              => __DIR__.'/Auth/Controller/ManageController.php',
26
+    'Auth\Controller\ManageGroupsController'                        => __DIR__.'/Auth/Controller/ManageGroupsController.php',
27
+    'Auth\Controller\PasswordController'                            => __DIR__.'/Auth/Controller/PasswordController.php',
28
+    'Auth\Controller\Plugin\Auth'                                   => __DIR__.'/Auth/Controller/Plugin/Auth.php',
29
+    'Auth\Controller\Plugin\LoginFilter'                            => __DIR__.'/Auth/Controller/Plugin/LoginFilter.php',
30
+    'Auth\Controller\Plugin\OAuth'                                  => __DIR__.'/Auth/Controller/Plugin/OAuth.php',
31
+    'Auth\Controller\Plugin\Service\SocialProfilesFactory'          => __DIR__.'/Auth/Controller/Plugin/Service/SocialProfilesFactory.php',
32
+    'Auth\Controller\Plugin\SocialProfiles'                         => __DIR__.'/Auth/Controller/Plugin/SocialProfiles.php',
33
+    'Auth\Controller\Plugin\SocialProfiles\AbstractAdapter'         => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/AbstractAdapter.php',
34
+    'Auth\Controller\Plugin\SocialProfiles\Facebook'                => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/Facebook.php',
35
+    'Auth\Controller\Plugin\SocialProfiles\LinkedIn'                => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/LinkedIn.php',
36
+    'Auth\Controller\Plugin\SocialProfiles\Xing'                    => __DIR__.'/Auth/Controller/Plugin/SocialProfiles/Xing.php',
37
+    'Auth\Controller\Plugin\UserSwitcher'                           => __DIR__.'/Auth/Controller/Plugin/UserSwitcher.php',
38
+    'Auth\Controller\RegisterConfirmationController'                => __DIR__.'/Auth/Controller/RegisterConfirmationController.php',
39
+    'Auth\Controller\RegisterController'                            => __DIR__.'/Auth/Controller/RegisterController.php',
40
+    'Auth\Controller\RemoveController'                              => __DIR__.'/Auth/Controller/RemoveController.php',
41
+    'Auth\Controller\SocialProfilesController'                      => __DIR__.'/Auth/Controller/SocialProfilesController.php',
42
+    'Auth\Controller\UsersController'                               => __DIR__.'/Auth/Controller/UsersController.php',
43
+    'Auth\Dependency\ListInterface'                                 => __DIR__.'/Auth/Dependency/ListInterface.php',
44
+    'Auth\Dependency\ListItem'                                      => __DIR__.'/Auth/Dependency/ListItem.php',
45
+    'Auth\Dependency\Manager'                                       => __DIR__.'/Auth/Dependency/Manager.php',
46
+    'Auth\Entity\AnonymousUser'                                     => __DIR__.'/Auth/Entity/AnonymousUser.php',
47
+    'Auth\Entity\AuthSession'                                       => __DIR__.'/Auth/Entity/AuthSession.php',
48
+    'Auth\Entity\Filter\CredentialFilter'                           => __DIR__.'/Auth/Entity/Filter/CredentialFilter.php',
49
+    'Auth\Entity\Filter\UserToSearchResult'                         => __DIR__.'/Auth/Entity/Filter/UserToSearchResult.php',
50
+    'Auth\Entity\Group'                                             => __DIR__.'/Auth/Entity/Group.php',
51
+    'Auth\Entity\GroupInterface'                                    => __DIR__.'/Auth/Entity/GroupInterface.php',
52
+    'Auth\Entity\Info'                                              => __DIR__.'/Auth/Entity/Info.php',
53
+    'Auth\Entity\InfoInterface'                                     => __DIR__.'/Auth/Entity/InfoInterface.php',
54
+    'Auth\Entity\SocialProfiles\AbstractProfile'                    => __DIR__.'/Auth/Entity/SocialProfiles/AbstractProfile.php',
55
+    'Auth\Entity\SocialProfiles\Facebook'                           => __DIR__.'/Auth/Entity/SocialProfiles/Facebook.php',
56
+    'Auth\Entity\SocialProfiles\LinkedIn'                           => __DIR__.'/Auth/Entity/SocialProfiles/LinkedIn.php',
57
+    'Auth\Entity\SocialProfiles\ProfileInterface'                   => __DIR__.'/Auth/Entity/SocialProfiles/ProfileInterface.php',
58
+    'Auth\Entity\SocialProfiles\Xing'                               => __DIR__.'/Auth/Entity/SocialProfiles/Xing.php',
59
+    'Auth\Entity\Status'                                            => __DIR__.'/Auth/Entity/Status.php',
60
+    'Auth\Entity\Token'                                             => __DIR__.'/Auth/Entity/Token.php',
61
+    'Auth\Entity\User'                                              => __DIR__.'/Auth/Entity/User.php',
62
+    'Auth\Entity\UserImage'                                         => __DIR__.'/Auth/Entity/UserImage.php',
63
+    'Auth\Entity\UserInterface'                                     => __DIR__.'/Auth/Entity/UserInterface.php',
64
+    'Auth\Exception\ExceptionInterface'                             => __DIR__.'/Auth/Exception/ExceptionInterface.php',
65
+    'Auth\Exception\UnauthorizedAccessException'                    => __DIR__.'/Auth/Exception/UnauthorizedAccessException.php',
66
+    'Auth\Exception\UnauthorizedImageAccessException'               => __DIR__.'/Auth/Exception/UnauthorizedImageAccessException.php',
67
+    'Auth\Exception\UserDeactivatedException'                       => __DIR__.'/Auth/Exception/UserDeactivatedException.php',
68
+    'Auth\Factory\Adapter\ExternalApplicationAdapterFactory'        => __DIR__.'/Auth/Factory/Adapter/ExternalApplicationAdapterFactory.php',
69
+    'Auth\Factory\Adapter\HybridAuthAdapterFactory'                 => __DIR__.'/Auth/Factory/Adapter/HybridAuthAdapterFactory.php',
70
+    'Auth\Factory\Adapter\UserAdapterFactory'                       => __DIR__.'/Auth/Factory/Adapter/UserAdapterFactory.php',
71
+    'Auth\Factory\Controller\ForgotPasswordControllerFactory'       => __DIR__.'/Auth/Factory/Controller/ForgotPasswordControllerFactory.php',
72
+    'Auth\Factory\Controller\GotoResetPasswordControllerFactory'    => __DIR__.'/Auth/Factory/Controller/GotoResetPasswordControllerFactory.php',
73
+    'Auth\Factory\Controller\IndexControllerFactory'                => __DIR__.'/Auth/Factory/Controller/IndexControllerFactory.php',
74
+    'Auth\Factory\Controller\PasswordControllerFactory'             => __DIR__.'/Auth/Factory/Controller/PasswordControllerFactory.php',
75
+    'Auth\Factory\Controller\Plugin\UserSwitcherFactory'            => __DIR__.'/Auth/Factory/Controller/Plugin/UserSwitcherFactory.php',
76
+    'Auth\Factory\Controller\RegisterConfirmationControllerFactory' => __DIR__.'/Auth/Factory/Controller/RegisterConfirmationControllerFactory.php',
77
+    'Auth\Factory\Controller\RegisterControllerFactory'             => __DIR__.'/Auth/Factory/Controller/RegisterControllerFactory.php',
78
+    'Auth\Factory\Controller\RemoveControllerFactory'               => __DIR__.'/Auth/Factory/Controller/RemoveControllerFactory.php',
79
+    'Auth\Factory\Controller\UsersControllerFactory'                => __DIR__.'/Auth/Factory/Controller/UsersControllerFactory.php',
80
+    'Auth\Factory\Dependency\ManagerFactory'                        => __DIR__.'/Auth/Factory/Dependency/ManagerFactory.php',
81
+    'Auth\Factory\Form\ForgotPasswordFactory'                       => __DIR__.'/Auth/Factory/Form/ForgotPasswordFactory.php',
82
+    'Auth\Factory\Form\LoginFactory'                                => __DIR__.'/Auth/Factory/Form/LoginFactory.php',
83
+    'Auth\Factory\Form\RegisterFactory'                             => __DIR__.'/Auth/Factory/Form/RegisterFactory.php',
84
+    'Auth\Factory\Form\RoleSelectFactory'                           => __DIR__.'/Auth/Factory/Form/RoleSelectFactory.php',
85
+    'Auth\Factory\Form\SocialProfilesFieldsetFactory'               => __DIR__.'/Auth/Factory/Form/SocialProfilesFieldsetFactory.php',
86
+    'Auth\Factory\Form\UserInfoFieldsetFactory'                     => __DIR__.'/Auth/Factory/Form/UserInfoFieldsetFactory.php',
87
+    'Auth\Factory\Form\UserStatusFieldsetFactory'                   => __DIR__.'/Auth/Factory/Form/UserStatusFieldsetFactory.php',
88
+    'Auth\Factory\Listener\ExceptionStrategyFactory'                => __DIR__.'/Auth/Factory/Listener/ExceptionStrategyFactory.php',
89
+    'Auth\Factory\Listener\MailForgotPasswordFactory'               => __DIR__.'/Auth/Factory/Listener/MailForgotPasswordFactory.php',
90
+    'Auth\Factory\Listener\SendRegistrationNotificationsFactory'    => __DIR__.'/Auth/Factory/Listener/SendRegistrationNotificationsFactory.php',
91
+    'Auth\Factory\ModuleOptionsFactory'                             => __DIR__.'/Auth/Factory/ModuleOptionsFactory.php',
92
+    'Auth\Factory\Service\AuthenticationServiceFactory'             => __DIR__.'/Auth/Factory/Service/AuthenticationServiceFactory.php',
93
+    'Auth\Factory\Service\ForgotPasswordFactory'                    => __DIR__.'/Auth/Factory/Service/ForgotPasswordFactory.php',
94
+    'Auth\Factory\Service\GotoResetPasswordFactory'                 => __DIR__.'/Auth/Factory/Service/GotoResetPasswordFactory.php',
95
+    'Auth\Factory\Service\HybridAuthFactory'                        => __DIR__.'/Auth/Factory/Service/HybridAuthFactory.php',
96
+    'Auth\Factory\Service\RegisterConfirmationFactory'              => __DIR__.'/Auth/Factory/Service/RegisterConfirmationFactory.php',
97
+    'Auth\Factory\Service\RegisterFactory'                          => __DIR__.'/Auth/Factory/Service/RegisterFactory.php',
98
+    'Auth\Factory\Service\UserUniqueTokenGeneratorFactory'          => __DIR__.'/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php',
99
+    'Auth\Factory\View\Helper\AuthFactory'                          => __DIR__.'/Auth/Factory/View/Helper/AuthFactory.php',
100
+    'Auth\Filter\LoginFilter'                                       => __DIR__.'/Auth/Filter/LoginFilter.php',
101
+    'Auth\Filter\StripQueryParams'                                  => __DIR__.'/Auth/Filter/StripQueryParams.php',
102
+    'Auth\Form\Element\SocialProfilesButton'                        => __DIR__.'/Auth/Form/Element/SocialProfilesButton.php',
103
+    'Auth\Form\ForgotPassword'                                      => __DIR__.'/Auth/Form/ForgotPassword.php',
104
+    'Auth\Form\ForgotPasswordInputFilter'                           => __DIR__.'/Auth/Form/ForgotPasswordInputFilter.php',
105
+    'Auth\Form\Group'                                               => __DIR__.'/Auth/Form/Group.php',
106
+    'Auth\Form\GroupFieldset'                                       => __DIR__.'/Auth/Form/GroupFieldset.php',
107
+    'Auth\Form\GroupUsersCollection'                                => __DIR__.'/Auth/Form/GroupUsersCollection.php',
108
+    'Auth\Form\Hydrator\SocialProfilesHydrator'                     => __DIR__.'/Auth/Form/Hydrator/SocialProfilesHydrator.php',
109
+    'Auth\Form\Hydrator\UserPasswordFieldsetHydrator'               => __DIR__.'/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php',
110
+    'Auth\Form\Hydrator\UserPasswordHydrator'                       => __DIR__.'/Auth/Form/Hydrator/UserPasswordHydrator.php',
111
+    'Auth\Form\Login'                                               => __DIR__.'/Auth/Form/Login.php',
112
+    'Auth\Form\LoginInputFilter'                                    => __DIR__.'/Auth/Form/LoginInputFilter.php',
113
+    'Auth\Form\Register'                                            => __DIR__.'/Auth/Form/Register.php',
114
+    'Auth\Form\RegisterInputFilter'                                 => __DIR__.'/Auth/Form/RegisterInputFilter.php',
115
+    'Auth\Form\SocialProfiles'                                      => __DIR__.'/Auth/Form/SocialProfiles.php',
116
+    'Auth\Form\SocialProfilesFieldset'                              => __DIR__.'/Auth/Form/SocialProfilesFieldset.php',
117
+    'Auth\Form\UserBase'                                            => __DIR__.'/Auth/Form/UserBase.php',
118
+    'Auth\Form\UserBaseFieldset'                                    => __DIR__.'/Auth/Form/UserBaseFieldset.php',
119
+    'Auth\Form\UserImageFactory'                                    => __DIR__.'/Auth/Form/UserImageFactory.php',
120
+    'Auth\Form\UserInfo'                                            => __DIR__.'/Auth/Form/UserInfo.php',
121
+    'Auth\Form\UserInfoContainer'                                   => __DIR__.'/Auth/Form/UserInfoContainer.php',
122
+    'Auth\Form\UserInfoFieldset'                                    => __DIR__.'/Auth/Form/UserInfoFieldset.php',
123
+    'Auth\Form\UserPassword'                                        => __DIR__.'/Auth/Form/UserPassword.php',
124
+    'Auth\Form\UserPasswordFieldset'                                => __DIR__.'/Auth/Form/UserPasswordFieldset.php',
125
+    'Auth\Form\UserProfileContainer'                                => __DIR__.'/Auth/Form/UserProfileContainer.php',
126
+    'Auth\Form\UserStatus'                                          => __DIR__.'/Auth/Form/UserStatus.php',
127
+    'Auth\Form\UserStatusContainer'                                 => __DIR__.'/Auth/Form/UserStatusContainer.php',
128
+    'Auth\Form\UserStatusFieldset'                                  => __DIR__.'/Auth/Form/UserStatusFieldset.php',
129
+    'Auth\Form\Validator\UniqueGroupName'                           => __DIR__.'/Auth/Form/Validator/UniqueGroupName.php',
130
+    'Auth\Form\Validator\UniqueGroupNameFactory'                    => __DIR__.'/Auth/Form/Validator/UniqueGroupNameFactory.php',
131
+    'Auth\Listener\DeactivatedUserListener'                         => __DIR__.'/Auth/Listener/DeactivatedUserListener.php',
132
+    'Auth\Listener\Events\AuthEvent'                                => __DIR__.'/Auth/Listener/Events/AuthEvent.php',
133
+    'Auth\Listener\MailForgotPassword'                              => __DIR__.'/Auth/Listener/MailForgotPassword.php',
134
+    'Auth\Listener\SendRegistrationNotifications'                   => __DIR__.'/Auth/Listener/SendRegistrationNotifications.php',
135
+    'Auth\Listener\SocialProfilesUnconfiguredErrorListener'         => __DIR__.'/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php',
136
+    'Auth\Listener\TokenListener'                                   => __DIR__.'/Auth/Listener/TokenListener.php',
137
+    'Auth\Listener\UnauthorizedAccessListener'                      => __DIR__.'/Auth/Listener/UnauthorizedAccessListener.php',
138
+    'Auth\Options\CaptchaOptions'                                   => __DIR__.'/Auth/Options/CaptchaOptions.php',
139
+    'Auth\Options\ModuleOptions'                                    => __DIR__.'/Auth/Options/ModuleOptions.php',
140
+    'Auth\Repository\Filter\PaginationSearchUsers'                  => __DIR__.'/Auth/Repository/Filter/PaginationSearchUsers.php',
141
+    'Auth\Repository\User'                                          => __DIR__.'/Auth/Repository/User.php',
142
+    'Auth\Service\Exception\TokenExpirationDateExpiredException'    => __DIR__.'/Auth/Service/Exception/TokenExpirationDateExpiredException.php',
143
+    'Auth\Service\Exception\UserAlreadyExistsException'             => __DIR__.'/Auth/Service/Exception/UserAlreadyExistsException.php',
144
+    'Auth\Service\Exception\UserDoesNotHaveAnEmailException'        => __DIR__.'/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php',
145
+    'Auth\Service\Exception\UserNotFoundException'                  => __DIR__.'/Auth/Service/Exception/UserNotFoundException.php',
146
+    'Auth\Service\ForgotPassword'                                   => __DIR__.'/Auth/Service/ForgotPassword.php',
147
+    'Auth\Service\GotoResetPassword'                                => __DIR__.'/Auth/Service/GotoResetPassword.php',
148
+    'Auth\Service\Register'                                         => __DIR__.'/Auth/Service/Register.php',
149
+    'Auth\Service\RegisterConfirmation'                             => __DIR__.'/Auth/Service/RegisterConfirmation.php',
150
+    'Auth\Service\UserUniqueTokenGenerator'                         => __DIR__.'/Auth/Service/UserUniqueTokenGenerator.php',
151
+    'Auth\View\Helper\Auth'                                         => __DIR__.'/Auth/View/Helper/Auth.php',
152
+    'Auth\View\Helper\BuildReferer'                                 => __DIR__.'/Auth/View/Helper/BuildReferer.php',
153
+    'Auth\View\Helper\LoginInfo'                                    => __DIR__.'/Auth/View/Helper/LoginInfo.php',
154
+    'Auth\View\Helper\StripQueryParams'                             => __DIR__.'/Auth/View/Helper/StripQueryParams.php',
155
+    'Auth\View\InjectLoginInfoListener'                             => __DIR__.'/Auth/View/InjectLoginInfoListener.php',
156 156
 );
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/BaseFieldset.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
             $locationsStrategy = new \Zend\Hydrator\Strategy\ClosureStrategy(
48 48
                 /* extract */
49
-                function ($value) use ($geoLocationStrategy, $geoLocationIsMultiple)
49
+                function($value) use ($geoLocationStrategy, $geoLocationIsMultiple)
50 50
                 {
51 51
                     $value = $geoLocationIsMultiple ? $value : $value->first();
52 52
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
                 },
55 55
 
56 56
                 /* hydrate */
57
-                function ($value) use ($geoLocationStrategy, $geoLocationIsMultiple)
57
+                function($value) use ($geoLocationStrategy, $geoLocationIsMultiple)
58 58
                 {
59 59
                     if ($geoLocationIsMultiple) {
60 60
                         return $geoLocationStrategy->hydrate($value);
@@ -126,14 +126,14 @@  discard block
 block discarded – undo
126 126
         $values = [];
127 127
         foreach ($this->object->getLocations() as $loc) {
128 128
             $values[] = trim(
129
-                $loc->getPostalCode() . ' ' . $loc->getCity() . ', ' . $loc->getRegion(),
129
+                $loc->getPostalCode().' '.$loc->getCity().', '.$loc->getRegion(),
130 130
                 ' ,'
131 131
             );
132 132
         }
133 133
 
134 134
         if (count($values)) {
135 135
             if ($isMultiple) {
136
-                return '<ul><li>' . join('</li><li>', $values) . '</li></ul>';
136
+                return '<ul><li>'.join('</li><li>', $values).'</li></ul>';
137 137
             } else {
138 138
                 return $values[0];
139 139
             }
Please login to merge, or discard this patch.