@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | /* @var \Doctrine\ODM\MongoDB\Query\Builder $qb */ |
44 | 44 | $qb = $this->repository->createQueryBuilder(); |
45 | - $qb->field('title')->equals(new \MongoRegex('/' . addslashes($q) . '/i')); |
|
45 | + $qb->field('title')->equals(new \MongoRegex('/'.addslashes($q).'/i')); |
|
46 | 46 | $cursor = $qb->getQuery()->execute(); |
47 | 47 | |
48 | 48 | $adapter = new DoctrineMongoCursor($cursor); |
@@ -22,7 +22,7 @@ |
||
22 | 22 | */ |
23 | 23 | class JobSelect extends Select implements HeadscriptProviderInterface |
24 | 24 | { |
25 | - private $scripts = [ 'Applications/js/form.job-select.js' ]; |
|
25 | + private $scripts = ['Applications/js/form.job-select.js']; |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * Sets the array of script names. |
@@ -17,7 +17,7 @@ |
||
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 | /** |
@@ -70,7 +70,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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( |
@@ -22,7 +22,7 @@ |
||
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 | ], |
@@ -1,18 +1,18 @@ |
||
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 | ); |
@@ -172,11 +172,11 @@ |
||
172 | 172 | |
173 | 173 | if (!$router || !$user) { return ''; } |
174 | 174 | |
175 | - $token = $user instanceOf AnonymousUser ? '?token=' . $user->getToken() : ''; |
|
175 | + $token = $user instanceOf AnonymousUser ? '?token='.$user->getToken() : ''; |
|
176 | 176 | $href = $router->assemble( |
177 | 177 | ['id' => $this->application->getId()], |
178 | 178 | ['name'=>'lang/applications/detail', 'force_canonical'=>true] |
179 | - ) . $token; |
|
179 | + ).$token; |
|
180 | 180 | |
181 | 181 | return $href; |
182 | 182 |
@@ -67,7 +67,7 @@ |
||
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( |
@@ -1,63 +1,63 @@ |
||
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 | ); |