@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | $location = new Location(); |
180 | 180 | $coords = array_map(function($i) { return (float) $i; }, $locData['coordinates']); |
181 | 181 | $location->setCountry($locData['country']) |
182 | - ->setRegion($locData['region']) |
|
183 | - ->setCity($locData['city']) |
|
184 | - ->setCoordinates(new Point($coords)); |
|
182 | + ->setRegion($locData['region']) |
|
183 | + ->setCity($locData['city']) |
|
184 | + ->setCoordinates(new Point($coords)); |
|
185 | 185 | |
186 | 186 | $jobLocations->add($location); |
187 | 187 | } |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | /* @var $jobEvents \Zend\EventManager\EventManager */ |
213 | 213 | $jobEvents = $services->get('Jobs/Events'); |
214 | 214 | $jobEvent->setName(JobEvent::EVENT_JOB_ACCEPTED) |
215 | - ->setTarget($this); |
|
215 | + ->setTarget($this); |
|
216 | 216 | $responses = $jobEvents->trigger($jobEvent); |
217 | 217 | foreach ($responses as $response) { |
218 | 218 | // responses from the portals |
@@ -40,8 +40,8 @@ |
||
40 | 40 | |
41 | 41 | $plugin = new AcceptInvitationHandler(); |
42 | 42 | $plugin->setUserRepository($userRepository) |
43 | - ->setOrganizationRepository($organizationRepository) |
|
44 | - ->setAuthenticationService($authenticationService); |
|
43 | + ->setOrganizationRepository($organizationRepository) |
|
44 | + ->setAuthenticationService($authenticationService); |
|
45 | 45 | |
46 | 46 | return $plugin; |
47 | 47 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | $this->filterSortParam($params); |
43 | 43 | $paginator = $this->createPaginator($repository, $params); |
44 | 44 | $paginator->setCurrentPageNumber($params->get('page', 1)) |
45 | - ->setItemCountPerPage($params->get('count', 10)); |
|
45 | + ->setItemCountPerPage($params->get('count', 10)); |
|
46 | 46 | |
47 | 47 | return $paginator; |
48 | 48 |
@@ -62,6 +62,6 @@ |
||
62 | 62 | ) |
63 | 63 | ) |
64 | 64 | ) |
65 | - ); |
|
65 | + ); |
|
66 | 66 | } |
67 | 67 | } |
@@ -23,8 +23,8 @@ |
||
23 | 23 | { |
24 | 24 | |
25 | 25 | /** (non-PHPdoc) |
26 | - * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
27 | - */ |
|
26 | + * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
27 | + */ |
|
28 | 28 | public function createService(ServiceLocatorInterface $serviceLocator) |
29 | 29 | { |
30 | 30 |
@@ -136,13 +136,13 @@ |
||
136 | 136 | { |
137 | 137 | $mail = $this->mailer->get('htmltemplate'); |
138 | 138 | $mail->setTemplate($template) |
139 | - ->setSubject($subject) |
|
140 | - ->setVariables( |
|
141 | - array( |
|
139 | + ->setSubject($subject) |
|
140 | + ->setVariables( |
|
141 | + array( |
|
142 | 142 | 'job' => $job, |
143 | 143 | 'siteName' => $this->options['siteName'], |
144 | 144 | ) |
145 | - ); |
|
145 | + ); |
|
146 | 146 | |
147 | 147 | if ($adminMail) { |
148 | 148 | $mail->setTo($this->options['adminEmail']); |
@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | $helper = new FormEditorLight(); |
45 | 45 | if(isset($config['view_helper_config']['form_editor']['light']) && is_array($config['view_helper_config']['form_editor']['light'])){ |
46 | - $helper->setOptions($config['view_helper_config']['form_editor']['light']); |
|
46 | + $helper->setOptions($config['view_helper_config']['form_editor']['light']); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | $helper->setOption('theme' , 'modern'); |
@@ -36,11 +36,11 @@ |
||
36 | 36 | } |
37 | 37 | $entity = new Location(); |
38 | 38 | $entity->setCity($data['city']) |
39 | - ->setRegion($data['region']) |
|
40 | - ->setPostalcode($data['postalcode']) |
|
41 | - ->setCountry($data['country']); |
|
39 | + ->setRegion($data['region']) |
|
40 | + ->setPostalcode($data['postalcode']) |
|
41 | + ->setCountry($data['country']); |
|
42 | 42 | if (!empty($data['coordinates'])) { |
43 | - $entity->setCoordinates(new Point($data['coordinates'])); |
|
43 | + $entity->setCoordinates(new Point($data['coordinates'])); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | return $entity; |
@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | public function filter($value) |
67 | 67 | { |
68 | - $htmlPurifier = $this->getHtmlPurifier(); |
|
69 | - return $htmlPurifier->filter($value); |
|
68 | + $htmlPurifier = $this->getHtmlPurifier(); |
|
69 | + return $htmlPurifier->filter($value); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | \ No newline at end of file |