Completed
Push — develop ( 959dbb...96e586 )
by
unknown
07:26
created
module/Jobs/src/Jobs/Repository/Job.php 1 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.
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/Auth/src/autoload_classmap.php 1 patch
Spacing   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -1,155 +1,155 @@
 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\ModuleOptionsFactory'                             => __DIR__ . '/Auth/Factory/ModuleOptionsFactory.php',
91
-    'Auth\Factory\Service\AuthenticationServiceFactory'             => __DIR__ . '/Auth/Factory/Service/AuthenticationServiceFactory.php',
92
-    'Auth\Factory\Service\ForgotPasswordFactory'                    => __DIR__ . '/Auth/Factory/Service/ForgotPasswordFactory.php',
93
-    'Auth\Factory\Service\GotoResetPasswordFactory'                 => __DIR__ . '/Auth/Factory/Service/GotoResetPasswordFactory.php',
94
-    'Auth\Factory\Service\HybridAuthFactory'                        => __DIR__ . '/Auth/Factory/Service/HybridAuthFactory.php',
95
-    'Auth\Factory\Service\RegisterConfirmationFactory'              => __DIR__ . '/Auth/Factory/Service/RegisterConfirmationFactory.php',
96
-    'Auth\Factory\Service\RegisterFactory'                          => __DIR__ . '/Auth/Factory/Service/RegisterFactory.php',
97
-    'Auth\Factory\Service\UserUniqueTokenGeneratorFactory'          => __DIR__ . '/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php',
98
-    'Auth\Factory\View\Helper\AuthFactory'                          => __DIR__ . '/Auth/Factory/View/Helper/AuthFactory.php',
99
-    'Auth\Filter\LoginFilter'                                       => __DIR__ . '/Auth/Filter/LoginFilter.php',
100
-    'Auth\Filter\StripQueryParams'                                  => __DIR__ . '/Auth/Filter/StripQueryParams.php',
101
-    'Auth\Form\Element\SocialProfilesButton'                        => __DIR__ . '/Auth/Form/Element/SocialProfilesButton.php',
102
-    'Auth\Form\ForgotPassword'                                      => __DIR__ . '/Auth/Form/ForgotPassword.php',
103
-    'Auth\Form\ForgotPasswordInputFilter'                           => __DIR__ . '/Auth/Form/ForgotPasswordInputFilter.php',
104
-    'Auth\Form\Group'                                               => __DIR__ . '/Auth/Form/Group.php',
105
-    'Auth\Form\GroupFieldset'                                       => __DIR__ . '/Auth/Form/GroupFieldset.php',
106
-    'Auth\Form\GroupUsersCollection'                                => __DIR__ . '/Auth/Form/GroupUsersCollection.php',
107
-    'Auth\Form\Hydrator\SocialProfilesHydrator'                     => __DIR__ . '/Auth/Form/Hydrator/SocialProfilesHydrator.php',
108
-    'Auth\Form\Hydrator\UserPasswordFieldsetHydrator'               => __DIR__ . '/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php',
109
-    'Auth\Form\Hydrator\UserPasswordHydrator'                       => __DIR__ . '/Auth/Form/Hydrator/UserPasswordHydrator.php',
110
-    'Auth\Form\Login'                                               => __DIR__ . '/Auth/Form/Login.php',
111
-    'Auth\Form\LoginInputFilter'                                    => __DIR__ . '/Auth/Form/LoginInputFilter.php',
112
-    'Auth\Form\Register'                                            => __DIR__ . '/Auth/Form/Register.php',
113
-    'Auth\Form\RegisterInputFilter'                                 => __DIR__ . '/Auth/Form/RegisterInputFilter.php',
114
-    'Auth\Form\SocialProfiles'                                      => __DIR__ . '/Auth/Form/SocialProfiles.php',
115
-    'Auth\Form\SocialProfilesFieldset'                              => __DIR__ . '/Auth/Form/SocialProfilesFieldset.php',
116
-    'Auth\Form\UserBase'                                            => __DIR__ . '/Auth/Form/UserBase.php',
117
-    'Auth\Form\UserBaseFieldset'                                    => __DIR__ . '/Auth/Form/UserBaseFieldset.php',
118
-    'Auth\Form\UserImageFactory'                                    => __DIR__ . '/Auth/Form/UserImageFactory.php',
119
-    'Auth\Form\UserInfo'                                            => __DIR__ . '/Auth/Form/UserInfo.php',
120
-    'Auth\Form\UserInfoContainer'                                   => __DIR__ . '/Auth/Form/UserInfoContainer.php',
121
-    'Auth\Form\UserInfoFieldset'                                    => __DIR__ . '/Auth/Form/UserInfoFieldset.php',
122
-    'Auth\Form\UserPassword'                                        => __DIR__ . '/Auth/Form/UserPassword.php',
123
-    'Auth\Form\UserPasswordFieldset'                                => __DIR__ . '/Auth/Form/UserPasswordFieldset.php',
124
-    'Auth\Form\UserProfileContainer'                                => __DIR__ . '/Auth/Form/UserProfileContainer.php',
125
-    'Auth\Form\UserStatus'                                          => __DIR__ . '/Auth/Form/UserStatus.php',
126
-    'Auth\Form\UserStatusContainer'                                 => __DIR__ . '/Auth/Form/UserStatusContainer.php',
127
-    'Auth\Form\UserStatusFieldset'                                  => __DIR__ . '/Auth/Form/UserStatusFieldset.php',
128
-    'Auth\Form\Validator\UniqueGroupName'                           => __DIR__ . '/Auth/Form/Validator/UniqueGroupName.php',
129
-    'Auth\Form\Validator\UniqueGroupNameFactory'                    => __DIR__ . '/Auth/Form/Validator/UniqueGroupNameFactory.php',
130
-    'Auth\Listener\AuthAggregateListener'                           => __DIR__ . '/Auth/Listener/AuthAggregateListener.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\SocialProfilesUnconfiguredErrorListener'         => __DIR__ . '/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php',
135
-    'Auth\Listener\TokenListener'                                   => __DIR__ . '/Auth/Listener/TokenListener.php',
136
-    'Auth\Listener\UnauthorizedAccessListener'                      => __DIR__ . '/Auth/Listener/UnauthorizedAccessListener.php',
137
-    'Auth\Options\CaptchaOptions'                                   => __DIR__ . '/Auth/Options/CaptchaOptions.php',
138
-    'Auth\Options\ModuleOptions'                                    => __DIR__ . '/Auth/Options/ModuleOptions.php',
139
-    'Auth\Repository\Filter\PaginationSearchUsers'                  => __DIR__ . '/Auth/Repository/Filter/PaginationSearchUsers.php',
140
-    'Auth\Repository\User'                                          => __DIR__ . '/Auth/Repository/User.php',
141
-    'Auth\Service\Exception\TokenExpirationDateExpiredException'    => __DIR__ . '/Auth/Service/Exception/TokenExpirationDateExpiredException.php',
142
-    'Auth\Service\Exception\UserAlreadyExistsException'             => __DIR__ . '/Auth/Service/Exception/UserAlreadyExistsException.php',
143
-    'Auth\Service\Exception\UserDoesNotHaveAnEmailException'        => __DIR__ . '/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php',
144
-    'Auth\Service\Exception\UserNotFoundException'                  => __DIR__ . '/Auth/Service/Exception/UserNotFoundException.php',
145
-    'Auth\Service\ForgotPassword'                                   => __DIR__ . '/Auth/Service/ForgotPassword.php',
146
-    'Auth\Service\GotoResetPassword'                                => __DIR__ . '/Auth/Service/GotoResetPassword.php',
147
-    'Auth\Service\Register'                                         => __DIR__ . '/Auth/Service/Register.php',
148
-    'Auth\Service\RegisterConfirmation'                             => __DIR__ . '/Auth/Service/RegisterConfirmation.php',
149
-    'Auth\Service\UserUniqueTokenGenerator'                         => __DIR__ . '/Auth/Service/UserUniqueTokenGenerator.php',
150
-    'Auth\View\Helper\Auth'                                         => __DIR__ . '/Auth/View/Helper/Auth.php',
151
-    'Auth\View\Helper\BuildReferer'                                 => __DIR__ . '/Auth/View/Helper/BuildReferer.php',
152
-    'Auth\View\Helper\LoginInfo'                                    => __DIR__ . '/Auth/View/Helper/LoginInfo.php',
153
-    'Auth\View\Helper\StripQueryParams'                             => __DIR__ . '/Auth/View/Helper/StripQueryParams.php',
154
-    '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\ModuleOptionsFactory'                             => __DIR__.'/Auth/Factory/ModuleOptionsFactory.php',
91
+    'Auth\Factory\Service\AuthenticationServiceFactory'             => __DIR__.'/Auth/Factory/Service/AuthenticationServiceFactory.php',
92
+    'Auth\Factory\Service\ForgotPasswordFactory'                    => __DIR__.'/Auth/Factory/Service/ForgotPasswordFactory.php',
93
+    'Auth\Factory\Service\GotoResetPasswordFactory'                 => __DIR__.'/Auth/Factory/Service/GotoResetPasswordFactory.php',
94
+    'Auth\Factory\Service\HybridAuthFactory'                        => __DIR__.'/Auth/Factory/Service/HybridAuthFactory.php',
95
+    'Auth\Factory\Service\RegisterConfirmationFactory'              => __DIR__.'/Auth/Factory/Service/RegisterConfirmationFactory.php',
96
+    'Auth\Factory\Service\RegisterFactory'                          => __DIR__.'/Auth/Factory/Service/RegisterFactory.php',
97
+    'Auth\Factory\Service\UserUniqueTokenGeneratorFactory'          => __DIR__.'/Auth/Factory/Service/UserUniqueTokenGeneratorFactory.php',
98
+    'Auth\Factory\View\Helper\AuthFactory'                          => __DIR__.'/Auth/Factory/View/Helper/AuthFactory.php',
99
+    'Auth\Filter\LoginFilter'                                       => __DIR__.'/Auth/Filter/LoginFilter.php',
100
+    'Auth\Filter\StripQueryParams'                                  => __DIR__.'/Auth/Filter/StripQueryParams.php',
101
+    'Auth\Form\Element\SocialProfilesButton'                        => __DIR__.'/Auth/Form/Element/SocialProfilesButton.php',
102
+    'Auth\Form\ForgotPassword'                                      => __DIR__.'/Auth/Form/ForgotPassword.php',
103
+    'Auth\Form\ForgotPasswordInputFilter'                           => __DIR__.'/Auth/Form/ForgotPasswordInputFilter.php',
104
+    'Auth\Form\Group'                                               => __DIR__.'/Auth/Form/Group.php',
105
+    'Auth\Form\GroupFieldset'                                       => __DIR__.'/Auth/Form/GroupFieldset.php',
106
+    'Auth\Form\GroupUsersCollection'                                => __DIR__.'/Auth/Form/GroupUsersCollection.php',
107
+    'Auth\Form\Hydrator\SocialProfilesHydrator'                     => __DIR__.'/Auth/Form/Hydrator/SocialProfilesHydrator.php',
108
+    'Auth\Form\Hydrator\UserPasswordFieldsetHydrator'               => __DIR__.'/Auth/Form/Hydrator/UserPasswordFieldsetHydrator.php',
109
+    'Auth\Form\Hydrator\UserPasswordHydrator'                       => __DIR__.'/Auth/Form/Hydrator/UserPasswordHydrator.php',
110
+    'Auth\Form\Login'                                               => __DIR__.'/Auth/Form/Login.php',
111
+    'Auth\Form\LoginInputFilter'                                    => __DIR__.'/Auth/Form/LoginInputFilter.php',
112
+    'Auth\Form\Register'                                            => __DIR__.'/Auth/Form/Register.php',
113
+    'Auth\Form\RegisterInputFilter'                                 => __DIR__.'/Auth/Form/RegisterInputFilter.php',
114
+    'Auth\Form\SocialProfiles'                                      => __DIR__.'/Auth/Form/SocialProfiles.php',
115
+    'Auth\Form\SocialProfilesFieldset'                              => __DIR__.'/Auth/Form/SocialProfilesFieldset.php',
116
+    'Auth\Form\UserBase'                                            => __DIR__.'/Auth/Form/UserBase.php',
117
+    'Auth\Form\UserBaseFieldset'                                    => __DIR__.'/Auth/Form/UserBaseFieldset.php',
118
+    'Auth\Form\UserImageFactory'                                    => __DIR__.'/Auth/Form/UserImageFactory.php',
119
+    'Auth\Form\UserInfo'                                            => __DIR__.'/Auth/Form/UserInfo.php',
120
+    'Auth\Form\UserInfoContainer'                                   => __DIR__.'/Auth/Form/UserInfoContainer.php',
121
+    'Auth\Form\UserInfoFieldset'                                    => __DIR__.'/Auth/Form/UserInfoFieldset.php',
122
+    'Auth\Form\UserPassword'                                        => __DIR__.'/Auth/Form/UserPassword.php',
123
+    'Auth\Form\UserPasswordFieldset'                                => __DIR__.'/Auth/Form/UserPasswordFieldset.php',
124
+    'Auth\Form\UserProfileContainer'                                => __DIR__.'/Auth/Form/UserProfileContainer.php',
125
+    'Auth\Form\UserStatus'                                          => __DIR__.'/Auth/Form/UserStatus.php',
126
+    'Auth\Form\UserStatusContainer'                                 => __DIR__.'/Auth/Form/UserStatusContainer.php',
127
+    'Auth\Form\UserStatusFieldset'                                  => __DIR__.'/Auth/Form/UserStatusFieldset.php',
128
+    'Auth\Form\Validator\UniqueGroupName'                           => __DIR__.'/Auth/Form/Validator/UniqueGroupName.php',
129
+    'Auth\Form\Validator\UniqueGroupNameFactory'                    => __DIR__.'/Auth/Form/Validator/UniqueGroupNameFactory.php',
130
+    'Auth\Listener\AuthAggregateListener'                           => __DIR__.'/Auth/Listener/AuthAggregateListener.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\SocialProfilesUnconfiguredErrorListener'         => __DIR__.'/Auth/Listener/SocialProfilesUnconfiguredErrorListener.php',
135
+    'Auth\Listener\TokenListener'                                   => __DIR__.'/Auth/Listener/TokenListener.php',
136
+    'Auth\Listener\UnauthorizedAccessListener'                      => __DIR__.'/Auth/Listener/UnauthorizedAccessListener.php',
137
+    'Auth\Options\CaptchaOptions'                                   => __DIR__.'/Auth/Options/CaptchaOptions.php',
138
+    'Auth\Options\ModuleOptions'                                    => __DIR__.'/Auth/Options/ModuleOptions.php',
139
+    'Auth\Repository\Filter\PaginationSearchUsers'                  => __DIR__.'/Auth/Repository/Filter/PaginationSearchUsers.php',
140
+    'Auth\Repository\User'                                          => __DIR__.'/Auth/Repository/User.php',
141
+    'Auth\Service\Exception\TokenExpirationDateExpiredException'    => __DIR__.'/Auth/Service/Exception/TokenExpirationDateExpiredException.php',
142
+    'Auth\Service\Exception\UserAlreadyExistsException'             => __DIR__.'/Auth/Service/Exception/UserAlreadyExistsException.php',
143
+    'Auth\Service\Exception\UserDoesNotHaveAnEmailException'        => __DIR__.'/Auth/Service/Exception/UserDoesNotHaveAnEmailException.php',
144
+    'Auth\Service\Exception\UserNotFoundException'                  => __DIR__.'/Auth/Service/Exception/UserNotFoundException.php',
145
+    'Auth\Service\ForgotPassword'                                   => __DIR__.'/Auth/Service/ForgotPassword.php',
146
+    'Auth\Service\GotoResetPassword'                                => __DIR__.'/Auth/Service/GotoResetPassword.php',
147
+    'Auth\Service\Register'                                         => __DIR__.'/Auth/Service/Register.php',
148
+    'Auth\Service\RegisterConfirmation'                             => __DIR__.'/Auth/Service/RegisterConfirmation.php',
149
+    'Auth\Service\UserUniqueTokenGenerator'                         => __DIR__.'/Auth/Service/UserUniqueTokenGenerator.php',
150
+    'Auth\View\Helper\Auth'                                         => __DIR__.'/Auth/View/Helper/Auth.php',
151
+    'Auth\View\Helper\BuildReferer'                                 => __DIR__.'/Auth/View/Helper/BuildReferer.php',
152
+    'Auth\View\Helper\LoginInfo'                                    => __DIR__.'/Auth/View/Helper/LoginInfo.php',
153
+    'Auth\View\Helper\StripQueryParams'                             => __DIR__.'/Auth/View/Helper/StripQueryParams.php',
154
+    'Auth\View\InjectLoginInfoListener'                             => __DIR__.'/Auth/View/InjectLoginInfoListener.php',
155 155
 );
Please login to merge, or discard this patch.
module/Organizations/src/autoload_classmap.php 1 patch
Spacing   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -1,76 +1,76 @@
 block discarded – undo
1 1
 <?php
2 2
 // Generated by ZF2's ./bin/classmap_generator.php
3 3
 return array(
4
-    'Organizations\ImageFileCache\ApplicationListener'                       => __DIR__ . '/Organizations/ImageFileCache/ApplicationListener.php',
5
-    'Organizations\ImageFileCache\ODMListener'                               => __DIR__ . '/Organizations/ImageFileCache/ODMListener.php',
6
-    'Organizations\ImageFileCache\Manager'                                   => __DIR__ . '/Organizations/ImageFileCache/Manager.php',
7
-    'Organizations\Acl\Listener\CheckJobCreatePermissionListener'            => __DIR__ . '/Organizations/Acl/Listener/CheckJobCreatePermissionListener.php',
8
-    'Organizations\Acl\Assertion\WriteAssertion'                             => __DIR__ . '/Organizations/Acl/Assertion/WriteAssertion.php',
9
-    'Organizations\Repository\Event\InjectOrganizationReferenceListener'     => __DIR__ . '/Organizations/Repository/Event/InjectOrganizationReferenceListener.php',
10
-    'Organizations\Repository\Filter\PaginationQuery'                        => __DIR__ . '/Organizations/Repository/Filter/PaginationQuery.php',
11
-    'Organizations\Repository\Filter\PaginationQueryFactory'                 => __DIR__ . '/Organizations/Repository/Filter/PaginationQueryFactory.php',
12
-    'Organizations\Repository\Organization'                                  => __DIR__ . '/Organizations/Repository/Organization.php',
13
-    'Organizations\Repository\OrganizationImage'                             => __DIR__ . '/Organizations/Repository/OrganizationImage.php',
14
-    'Organizations\Repository\OrganizationName'                              => __DIR__ . '/Organizations/Repository/OrganizationName.php',
15
-    'Organizations\Filter\Recipients'                                        => __DIR__ . '/Organizations/Filter/Recipients.php',
16
-    'Organizations\Options\ImageFileCacheOptions'                            => __DIR__ . '/Organizations/Options/ImageFileCacheOptions.php',
17
-    'Organizations\Options\OrganizationLogoOptions'                          => __DIR__ . '/Organizations/Options/OrganizationLogoOptions.php',
18
-    'Organizations\Exception\ExceptionInterface'                             => __DIR__ . '/Organizations/Exception/ExceptionInterface.php',
19
-    'Organizations\Exception\MissingParentOrganizationException'             => __DIR__ . '/Organizations/Exception/MissingParentOrganizationException.php',
20
-    'Organizations\Form\EmployeeFieldset'                                    => __DIR__ . '/Organizations/Form/EmployeeFieldset.php',
21
-    'Organizations\Form\OrganizationsFieldset'                               => __DIR__ . '/Organizations/Form/OrganizationsFieldset.php',
22
-    'Organizations\Form\WorkflowSettings'                                    => __DIR__ . '/Organizations/Form/WorkflowSettings.php',
23
-    'Organizations\Form\Organizations'                                       => __DIR__ . '/Organizations/Form/Organizations.php',
24
-    'Organizations\Form\OrganizationsDescriptionFieldset'                    => __DIR__ . '/Organizations/Form/OrganizationsDescriptionFieldset.php',
25
-    'Organizations\Form\LogoImageFactory'                                    => __DIR__ . '/Organizations/Form/LogoImageFactory.php',
26
-    'Organizations\Form\OrganizationsNameFieldset'                           => __DIR__ . '/Organizations/Form/OrganizationsNameFieldset.php',
27
-    'Organizations\Form\WorkflowSettingsFieldset'                            => __DIR__ . '/Organizations/Form/WorkflowSettingsFieldset.php',
28
-    'Organizations\Form\OrganizationsNameForm'                               => __DIR__ . '/Organizations/Form/OrganizationsNameForm.php',
29
-    'Organizations\Form\EmployeesFieldset'                                   => __DIR__ . '/Organizations/Form/EmployeesFieldset.php',
30
-    'Organizations\Form\Element\InviteEmployeeBar'                           => __DIR__ . '/Organizations/Form/Element/InviteEmployeeBar.php',
31
-    'Organizations\Form\Element\Employee'                                    => __DIR__ . '/Organizations/Form/Element/Employee.php',
32
-    'Organizations\Form\OrganizationsContactFieldset'                        => __DIR__ . '/Organizations/Form/OrganizationsContactFieldset.php',
33
-    'Organizations\Form\OrganizationsContactForm'                            => __DIR__ . '/Organizations/Form/OrganizationsContactForm.php',
34
-    'Organizations\Form\Employees'                                           => __DIR__ . '/Organizations/Form/Employees.php',
35
-    'Organizations\Form\OrganizationsDescriptionForm'                        => __DIR__ . '/Organizations/Form/OrganizationsDescriptionForm.php',
36
-    'Organizations\Entity\Template'                                          => __DIR__ . '/Organizations/Entity/Template.php',
37
-    'Organizations\Entity\EmployeeInterface'                                 => __DIR__ . '/Organizations/Entity/EmployeeInterface.php',
38
-    'Organizations\Entity\EmployeePermissions'                               => __DIR__ . '/Organizations/Entity/EmployeePermissions.php',
39
-    'Organizations\Entity\TemplateInterface'                                 => __DIR__ . '/Organizations/Entity/TemplateInterface.php',
40
-    'Organizations\Entity\OrganizationInterface'                             => __DIR__ . '/Organizations/Entity/OrganizationInterface.php',
41
-    'Organizations\Entity\WorkflowSettings'                                  => __DIR__ . '/Organizations/Entity/WorkflowSettings.php',
42
-    'Organizations\Entity\WorkflowSettingsInterface'                         => __DIR__ . '/Organizations/Entity/WorkflowSettingsInterface.php',
43
-    'Organizations\Entity\EmployeePermissionsInterface'                      => __DIR__ . '/Organizations/Entity/EmployeePermissionsInterface.php',
44
-    'Organizations\Entity\Hydrator\Strategy\OrganizationNameStrategy'        => __DIR__ . '/Organizations/Entity/Hydrator/Strategy/OrganizationNameStrategy.php',
45
-    'Organizations\Entity\Hydrator\Strategy\HttploadStrategy'                => __DIR__ . '/Organizations/Entity/Hydrator/Strategy/HttploadStrategy.php',
46
-    'Organizations\Entity\Hydrator\OrganizationHydrator'                     => __DIR__ . '/Organizations/Entity/Hydrator/OrganizationHydrator.php',
47
-    'Organizations\Entity\Hydrator\OrganizationHydratorFactory'              => __DIR__ . '/Organizations/Entity/Hydrator/OrganizationHydratorFactory.php',
48
-    'Organizations\Entity\OrganizationNameInterface'                         => __DIR__ . '/Organizations/Entity/OrganizationNameInterface.php',
49
-    'Organizations\Entity\OrganizationReference'                             => __DIR__ . '/Organizations/Entity/OrganizationReference.php',
50
-    'Organizations\Entity\Organization'                                      => __DIR__ . '/Organizations/Entity/Organization.php',
51
-    'Organizations\Entity\OrganizationImage'                                 => __DIR__ . '/Organizations/Entity/OrganizationImage.php',
52
-    'Organizations\Entity\OrganizationContact'                               => __DIR__ . '/Organizations/Entity/OrganizationContact.php',
53
-    'Organizations\Entity\Employee'                                          => __DIR__ . '/Organizations/Entity/Employee.php',
54
-    'Organizations\Entity\OrganizationName'                                  => __DIR__ . '/Organizations/Entity/OrganizationName.php',
55
-    'Organizations\Entity\OrganizationContactInterface'                      => __DIR__ . '/Organizations/Entity/OrganizationContactInterface.php',
56
-    'Organizations\Entity\OrganizationReferenceInterface'                    => __DIR__ . '/Organizations/Entity/OrganizationReferenceInterface.php',
57
-    'Organizations\Controller\IndexController'                               => __DIR__ . '/Organizations/Controller/IndexController.php',
58
-    'Organizations\Controller\Plugin\GetOrganizationHandler'                 => __DIR__ . '/Organizations/Controller/Plugin/GetOrganizationHandler.php',
59
-    'Organizations\Controller\Plugin\InvitationHandler'                      => __DIR__ . '/Organizations/Controller/Plugin/InvitationHandler.php',
60
-    'Organizations\Controller\Plugin\AcceptInvitationHandler'                => __DIR__ . '/Organizations/Controller/Plugin/AcceptInvitationHandler.php',
61
-    'Organizations\Controller\InviteEmployeeController'                      => __DIR__ . '/Organizations/Controller/InviteEmployeeController.php',
62
-    'Organizations\Mail\EmployeeInvitationFactory'                           => __DIR__ . '/Organizations/Mail/EmployeeInvitationFactory.php',
63
-    'Organizations\Auth\Dependency\ListListener'                             => __DIR__ . '/Organizations/Auth/Dependency/ListListener.php',
64
-    'Organizations\Auth\Dependency\EmployeeListListener'                     => __DIR__ . '/Organizations/Auth/Dependency/EmployeeListListener.php',
65
-    'Organizations\Factory\ImageFileCache\ManagerFactory'                    => __DIR__ . '/Organizations/Factory/ImageFileCache/ManagerFactory.php',
66
-    'Organizations\Factory\ImageFileCache\ApplicationListenerFactory'        => __DIR__ . '/Organizations/Factory/ImageFileCache/ApplicationListenerFactory.php',
67
-    'Organizations\Factory\ImageFileCache\ODMListenerFactory'                => __DIR__ . '/Organizations/Factory/ImageFileCache/ODMListenerFactory.php',
68
-    'Organizations\Factory\Form\EmployeesFieldsetFactory'                    => __DIR__ . '/Organizations/Factory/Form/EmployeesFieldsetFactory.php',
69
-    'Organizations\Factory\Form\EmployeeFieldsetFactory'                     => __DIR__ . '/Organizations/Factory/Form/EmployeeFieldsetFactory.php',
70
-    'Organizations\Factory\Entity\Hydrator\LogoHydratorFactory'              => __DIR__ . '/Organizations/Factory/Entity/Hydrator/LogoHydratorFactory.php',
71
-    'Organizations\Factory\Controller\IndexControllerFactory'                => __DIR__ . '/Organizations/Factory/Controller/IndexControllerFactory.php',
72
-    'Organizations\Factory\Controller\Plugin\GetOrganizationHandlerFactory'  => __DIR__ . '/Organizations/Factory/Controller/Plugin/GetOrganizationHandlerFactory.php',
73
-    'Organizations\Factory\Controller\Plugin\InvitationHandlerFactory'       => __DIR__ . '/Organizations/Factory/Controller/Plugin/InvitationHandlerFactory.php',
74
-    'Organizations\Factory\Controller\Plugin\AcceptInvitationHandlerFactory' => __DIR__ . '/Organizations/Factory/Controller/Plugin/AcceptInvitationHandlerFactory.php',
75
-    'Organizations\Factory\Auth\Dependency\ListListenerFactory'              => __DIR__ . '/Organizations/Factory/Auth/Dependency/ListListenerFactory.php',
4
+    'Organizations\ImageFileCache\ApplicationListener'                       => __DIR__.'/Organizations/ImageFileCache/ApplicationListener.php',
5
+    'Organizations\ImageFileCache\ODMListener'                               => __DIR__.'/Organizations/ImageFileCache/ODMListener.php',
6
+    'Organizations\ImageFileCache\Manager'                                   => __DIR__.'/Organizations/ImageFileCache/Manager.php',
7
+    'Organizations\Acl\Listener\CheckJobCreatePermissionListener'            => __DIR__.'/Organizations/Acl/Listener/CheckJobCreatePermissionListener.php',
8
+    'Organizations\Acl\Assertion\WriteAssertion'                             => __DIR__.'/Organizations/Acl/Assertion/WriteAssertion.php',
9
+    'Organizations\Repository\Event\InjectOrganizationReferenceListener'     => __DIR__.'/Organizations/Repository/Event/InjectOrganizationReferenceListener.php',
10
+    'Organizations\Repository\Filter\PaginationQuery'                        => __DIR__.'/Organizations/Repository/Filter/PaginationQuery.php',
11
+    'Organizations\Repository\Filter\PaginationQueryFactory'                 => __DIR__.'/Organizations/Repository/Filter/PaginationQueryFactory.php',
12
+    'Organizations\Repository\Organization'                                  => __DIR__.'/Organizations/Repository/Organization.php',
13
+    'Organizations\Repository\OrganizationImage'                             => __DIR__.'/Organizations/Repository/OrganizationImage.php',
14
+    'Organizations\Repository\OrganizationName'                              => __DIR__.'/Organizations/Repository/OrganizationName.php',
15
+    'Organizations\Filter\Recipients'                                        => __DIR__.'/Organizations/Filter/Recipients.php',
16
+    'Organizations\Options\ImageFileCacheOptions'                            => __DIR__.'/Organizations/Options/ImageFileCacheOptions.php',
17
+    'Organizations\Options\OrganizationLogoOptions'                          => __DIR__.'/Organizations/Options/OrganizationLogoOptions.php',
18
+    'Organizations\Exception\ExceptionInterface'                             => __DIR__.'/Organizations/Exception/ExceptionInterface.php',
19
+    'Organizations\Exception\MissingParentOrganizationException'             => __DIR__.'/Organizations/Exception/MissingParentOrganizationException.php',
20
+    'Organizations\Form\EmployeeFieldset'                                    => __DIR__.'/Organizations/Form/EmployeeFieldset.php',
21
+    'Organizations\Form\OrganizationsFieldset'                               => __DIR__.'/Organizations/Form/OrganizationsFieldset.php',
22
+    'Organizations\Form\WorkflowSettings'                                    => __DIR__.'/Organizations/Form/WorkflowSettings.php',
23
+    'Organizations\Form\Organizations'                                       => __DIR__.'/Organizations/Form/Organizations.php',
24
+    'Organizations\Form\OrganizationsDescriptionFieldset'                    => __DIR__.'/Organizations/Form/OrganizationsDescriptionFieldset.php',
25
+    'Organizations\Form\LogoImageFactory'                                    => __DIR__.'/Organizations/Form/LogoImageFactory.php',
26
+    'Organizations\Form\OrganizationsNameFieldset'                           => __DIR__.'/Organizations/Form/OrganizationsNameFieldset.php',
27
+    'Organizations\Form\WorkflowSettingsFieldset'                            => __DIR__.'/Organizations/Form/WorkflowSettingsFieldset.php',
28
+    'Organizations\Form\OrganizationsNameForm'                               => __DIR__.'/Organizations/Form/OrganizationsNameForm.php',
29
+    'Organizations\Form\EmployeesFieldset'                                   => __DIR__.'/Organizations/Form/EmployeesFieldset.php',
30
+    'Organizations\Form\Element\InviteEmployeeBar'                           => __DIR__.'/Organizations/Form/Element/InviteEmployeeBar.php',
31
+    'Organizations\Form\Element\Employee'                                    => __DIR__.'/Organizations/Form/Element/Employee.php',
32
+    'Organizations\Form\OrganizationsContactFieldset'                        => __DIR__.'/Organizations/Form/OrganizationsContactFieldset.php',
33
+    'Organizations\Form\OrganizationsContactForm'                            => __DIR__.'/Organizations/Form/OrganizationsContactForm.php',
34
+    'Organizations\Form\Employees'                                           => __DIR__.'/Organizations/Form/Employees.php',
35
+    'Organizations\Form\OrganizationsDescriptionForm'                        => __DIR__.'/Organizations/Form/OrganizationsDescriptionForm.php',
36
+    'Organizations\Entity\Template'                                          => __DIR__.'/Organizations/Entity/Template.php',
37
+    'Organizations\Entity\EmployeeInterface'                                 => __DIR__.'/Organizations/Entity/EmployeeInterface.php',
38
+    'Organizations\Entity\EmployeePermissions'                               => __DIR__.'/Organizations/Entity/EmployeePermissions.php',
39
+    'Organizations\Entity\TemplateInterface'                                 => __DIR__.'/Organizations/Entity/TemplateInterface.php',
40
+    'Organizations\Entity\OrganizationInterface'                             => __DIR__.'/Organizations/Entity/OrganizationInterface.php',
41
+    'Organizations\Entity\WorkflowSettings'                                  => __DIR__.'/Organizations/Entity/WorkflowSettings.php',
42
+    'Organizations\Entity\WorkflowSettingsInterface'                         => __DIR__.'/Organizations/Entity/WorkflowSettingsInterface.php',
43
+    'Organizations\Entity\EmployeePermissionsInterface'                      => __DIR__.'/Organizations/Entity/EmployeePermissionsInterface.php',
44
+    'Organizations\Entity\Hydrator\Strategy\OrganizationNameStrategy'        => __DIR__.'/Organizations/Entity/Hydrator/Strategy/OrganizationNameStrategy.php',
45
+    'Organizations\Entity\Hydrator\Strategy\HttploadStrategy'                => __DIR__.'/Organizations/Entity/Hydrator/Strategy/HttploadStrategy.php',
46
+    'Organizations\Entity\Hydrator\OrganizationHydrator'                     => __DIR__.'/Organizations/Entity/Hydrator/OrganizationHydrator.php',
47
+    'Organizations\Entity\Hydrator\OrganizationHydratorFactory'              => __DIR__.'/Organizations/Entity/Hydrator/OrganizationHydratorFactory.php',
48
+    'Organizations\Entity\OrganizationNameInterface'                         => __DIR__.'/Organizations/Entity/OrganizationNameInterface.php',
49
+    'Organizations\Entity\OrganizationReference'                             => __DIR__.'/Organizations/Entity/OrganizationReference.php',
50
+    'Organizations\Entity\Organization'                                      => __DIR__.'/Organizations/Entity/Organization.php',
51
+    'Organizations\Entity\OrganizationImage'                                 => __DIR__.'/Organizations/Entity/OrganizationImage.php',
52
+    'Organizations\Entity\OrganizationContact'                               => __DIR__.'/Organizations/Entity/OrganizationContact.php',
53
+    'Organizations\Entity\Employee'                                          => __DIR__.'/Organizations/Entity/Employee.php',
54
+    'Organizations\Entity\OrganizationName'                                  => __DIR__.'/Organizations/Entity/OrganizationName.php',
55
+    'Organizations\Entity\OrganizationContactInterface'                      => __DIR__.'/Organizations/Entity/OrganizationContactInterface.php',
56
+    'Organizations\Entity\OrganizationReferenceInterface'                    => __DIR__.'/Organizations/Entity/OrganizationReferenceInterface.php',
57
+    'Organizations\Controller\IndexController'                               => __DIR__.'/Organizations/Controller/IndexController.php',
58
+    'Organizations\Controller\Plugin\GetOrganizationHandler'                 => __DIR__.'/Organizations/Controller/Plugin/GetOrganizationHandler.php',
59
+    'Organizations\Controller\Plugin\InvitationHandler'                      => __DIR__.'/Organizations/Controller/Plugin/InvitationHandler.php',
60
+    'Organizations\Controller\Plugin\AcceptInvitationHandler'                => __DIR__.'/Organizations/Controller/Plugin/AcceptInvitationHandler.php',
61
+    'Organizations\Controller\InviteEmployeeController'                      => __DIR__.'/Organizations/Controller/InviteEmployeeController.php',
62
+    'Organizations\Mail\EmployeeInvitationFactory'                           => __DIR__.'/Organizations/Mail/EmployeeInvitationFactory.php',
63
+    'Organizations\Auth\Dependency\ListListener'                             => __DIR__.'/Organizations/Auth/Dependency/ListListener.php',
64
+    'Organizations\Auth\Dependency\EmployeeListListener'                     => __DIR__.'/Organizations/Auth/Dependency/EmployeeListListener.php',
65
+    'Organizations\Factory\ImageFileCache\ManagerFactory'                    => __DIR__.'/Organizations/Factory/ImageFileCache/ManagerFactory.php',
66
+    'Organizations\Factory\ImageFileCache\ApplicationListenerFactory'        => __DIR__.'/Organizations/Factory/ImageFileCache/ApplicationListenerFactory.php',
67
+    'Organizations\Factory\ImageFileCache\ODMListenerFactory'                => __DIR__.'/Organizations/Factory/ImageFileCache/ODMListenerFactory.php',
68
+    'Organizations\Factory\Form\EmployeesFieldsetFactory'                    => __DIR__.'/Organizations/Factory/Form/EmployeesFieldsetFactory.php',
69
+    'Organizations\Factory\Form\EmployeeFieldsetFactory'                     => __DIR__.'/Organizations/Factory/Form/EmployeeFieldsetFactory.php',
70
+    'Organizations\Factory\Entity\Hydrator\LogoHydratorFactory'              => __DIR__.'/Organizations/Factory/Entity/Hydrator/LogoHydratorFactory.php',
71
+    'Organizations\Factory\Controller\IndexControllerFactory'                => __DIR__.'/Organizations/Factory/Controller/IndexControllerFactory.php',
72
+    'Organizations\Factory\Controller\Plugin\GetOrganizationHandlerFactory'  => __DIR__.'/Organizations/Factory/Controller/Plugin/GetOrganizationHandlerFactory.php',
73
+    'Organizations\Factory\Controller\Plugin\InvitationHandlerFactory'       => __DIR__.'/Organizations/Factory/Controller/Plugin/InvitationHandlerFactory.php',
74
+    'Organizations\Factory\Controller\Plugin\AcceptInvitationHandlerFactory' => __DIR__.'/Organizations/Factory/Controller/Plugin/AcceptInvitationHandlerFactory.php',
75
+    'Organizations\Factory\Auth\Dependency\ListListenerFactory'              => __DIR__.'/Organizations/Factory/Auth/Dependency/ListListenerFactory.php',
76 76
 );
Please login to merge, or discard this patch.