@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | class MailServiceFactory implements FactoryInterface |
22 | 22 | { |
23 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
23 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
24 | 24 | { |
25 | 25 | $config = $container->get('Config'); |
26 | 26 | $mails = isset($config['mails']) ? $config['mails'] : []; |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | $configArray = array_merge($configArray, $mails); |
46 | 46 | |
47 | 47 | $config = new MailServiceConfig($configArray); |
48 | - $service = new MailService($container,$config->toArray()); |
|
48 | + $service = new MailService($container, $config->toArray()); |
|
49 | 49 | $config->configureServiceManager($service); |
50 | - foreach($config->toArray() as $name=>$value){ |
|
50 | + foreach ($config->toArray() as $name=>$value) { |
|
51 | 51 | $method = 'set'.$name; |
52 | - if(method_exists($service,$method)){ |
|
53 | - call_user_func([$service,$method],$value); |
|
52 | + if (method_exists($service, $method)) { |
|
53 | + call_user_func([$service, $method], $value); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * for multiple paths. |
24 | 24 | * example https://github.com/doctrine/DoctrineORMModule |
25 | 25 | */ |
26 | - 'paths' => [ __DIR__ . '/../src/Cv/Entity'], |
|
26 | + 'paths' => [__DIR__.'/../src/Cv/Entity'], |
|
27 | 27 | ], |
28 | 28 | ], |
29 | 29 | 'eventmanager' => [ |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | 'translation_file_patterns' => [ |
45 | 45 | [ |
46 | 46 | 'type' => 'gettext', |
47 | - 'base_dir' => __DIR__ . '/../language', |
|
47 | + 'base_dir' => __DIR__.'/../language', |
|
48 | 48 | 'pattern' => '%s.mo', |
49 | 49 | ], |
50 | 50 | ], |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | 'factories' => [ |
155 | 155 | \Cv\Controller\IndexController::class => \Zend\ServiceManager\Factory\InvokableFactory::class, |
156 | 156 | 'Cv/View' => 'Cv\Factory\Controller\ViewControllerFactory', |
157 | - 'Cv\Controller\Manage' => [ManageController::class,'factory'], |
|
157 | + 'Cv\Controller\Manage' => [ManageController::class, 'factory'], |
|
158 | 158 | ], |
159 | 159 | 'aliases' => [ |
160 | 160 | 'Cv/Index' => \Cv\Controller\IndexController::class, |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | 'resume-recruiter' => [ |
170 | 170 | 'label' => /*@translate*/ 'Talent-Pool', |
171 | 171 | 'route' => 'lang/cvs', |
172 | - 'active_on' => [ 'lang/cvs/edit', 'lang/cvs/view' ], |
|
172 | + 'active_on' => ['lang/cvs/edit', 'lang/cvs/view'], |
|
173 | 173 | 'resource' => 'navigation/resume-recruiter', |
174 | 174 | 'order' => 10, |
175 | 175 | 'query' => [ |
@@ -200,15 +200,15 @@ discard block |
||
200 | 200 | |
201 | 201 | // Map template to files. Speeds up the lookup through the template stack. |
202 | 202 | 'template_map' => [ |
203 | - 'cv/form/employment.view' => __DIR__ . '/../view/cv/form/employment.view.phtml', |
|
204 | - 'cv/form/employment.form' => __DIR__ . '/../view/cv/form/employment.form.phtml', |
|
205 | - 'cv/form/education.view' => __DIR__ . '/../view/cv/form/education.view.phtml', |
|
206 | - 'cv/form/education.form' => __DIR__ . '/../view/cv/form/education.form.phtml' |
|
203 | + 'cv/form/employment.view' => __DIR__.'/../view/cv/form/employment.view.phtml', |
|
204 | + 'cv/form/employment.form' => __DIR__.'/../view/cv/form/employment.form.phtml', |
|
205 | + 'cv/form/education.view' => __DIR__.'/../view/cv/form/education.view.phtml', |
|
206 | + 'cv/form/education.form' => __DIR__.'/../view/cv/form/education.form.phtml' |
|
207 | 207 | ], |
208 | 208 | |
209 | 209 | // Where to look for view templates not mapped above |
210 | 210 | 'template_path_stack' => [ |
211 | - __DIR__ . '/../view', |
|
211 | + __DIR__.'/../view', |
|
212 | 212 | ], |
213 | 213 | ], |
214 | 214 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | class PaginationQueryFactory implements FactoryInterface |
26 | 26 | { |
27 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
27 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
28 | 28 | { |
29 | 29 | $auth = $container->get('AuthenticationService'); |
30 | 30 | $user = $auth->hasIdentity() ? $auth->getUser() : null; |
@@ -12,7 +12,7 @@ |
||
12 | 12 | |
13 | 13 | use Cv\Controller\ViewController; |
14 | 14 | use Interop\Container\ContainerInterface; |
15 | -use Zend\ServiceManager\Factory\FactoryInterface;; |
|
15 | +use Zend\ServiceManager\Factory\FactoryInterface; ; |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * ${CARET} |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | 'translation_file_patterns' => [ |
38 | 38 | [ |
39 | 39 | 'type' => 'gettext', |
40 | - 'base_dir' => __DIR__ . '/../language', |
|
40 | + 'base_dir' => __DIR__.'/../language', |
|
41 | 41 | 'pattern' => '%s.mo', |
42 | 42 | ], |
43 | 43 | ], |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | // Configuration of the controller service manager (Which loads controllers) |
88 | 88 | 'controllers' => [ |
89 | 89 | 'factories' => [ |
90 | - 'Settings\Controller\Index' => [\Settings\Controller\IndexController::class,'factory'] |
|
90 | + 'Settings\Controller\Index' => [\Settings\Controller\IndexController::class, 'factory'] |
|
91 | 91 | ], |
92 | 92 | ], |
93 | 93 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | // Where to look for view templates not mapped above |
101 | 101 | 'template_path_stack' => [ |
102 | - __DIR__ . '/../view', |
|
102 | + __DIR__.'/../view', |
|
103 | 103 | ], |
104 | 104 | ], |
105 | 105 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | 'factories' => [ |
116 | 116 | 'Settings' => '\Settings\Settings\SettingsFactory', |
117 | 117 | 'Settings/EntityResolver' => '\Settings\Repository\SettingsEntityResolverFactory', |
118 | - 'Settings/InjectEntityResolverListener' => [\Settings\Repository\Event\InjectSettingsEntityResolverListener::class,'factory'], |
|
118 | + 'Settings/InjectEntityResolverListener' => [\Settings\Repository\Event\InjectSettingsEntityResolverListener::class, 'factory'], |
|
119 | 119 | ], |
120 | 120 | 'initializers' => [], |
121 | 121 | 'shared' => [], |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | |
129 | 129 | 'form_elements' => [ |
130 | 130 | 'factories' => [ |
131 | - 'Settings/Form' => [\Settings\Form\AbstractSettingsForm::class,'factory'], |
|
132 | - 'Settings/DisableElementsCapableFormSettingsFieldset' => [\Settings\Form\DisableElementsCapableFormSettingsFieldset::class,'factory'], |
|
131 | + 'Settings/Form' => [\Settings\Form\AbstractSettingsForm::class, 'factory'], |
|
132 | + 'Settings/DisableElementsCapableFormSettingsFieldset' => [\Settings\Form\DisableElementsCapableFormSettingsFieldset::class, 'factory'], |
|
133 | 133 | 'Settings/Fieldset' => \Settings\Form\Factory\SettingsFieldsetFactory::class, |
134 | 134 | ], |
135 | 135 | 'aliases' => [ |
@@ -19,7 +19,7 @@ |
||
19 | 19 | |
20 | 20 | class SettingsEntityResolverFactory implements FactoryInterface |
21 | 21 | { |
22 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
22 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
23 | 23 | { |
24 | 24 | $moduleManager = $container->get('ModuleManager'); |
25 | 25 | $config = $container->get('Config'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | class SettingsFactory implements FactoryInterface |
13 | 13 | { |
14 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
14 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
15 | 15 | { |
16 | 16 | $settings = new Settings(); |
17 | 17 | $settings->setServiceLocator($container); |
@@ -87,7 +87,7 @@ |
||
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | - public function find( $user, $lockMode = LockMode::NONE, $lockVersion = null ) { |
|
90 | + public function find($user, $lockMode = LockMode::NONE, $lockVersion = null) { |
|
91 | 91 | return $this->getSettingsByUser($user); |
92 | 92 | } |
93 | 93 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | class SettingsFactory implements FactoryInterface |
17 | 17 | { |
18 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
18 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
19 | 19 | { |
20 | 20 | $auth = $container->get('AuthenticationService'); |
21 | 21 | $user = $auth->getUser(); |