@@ -48,7 +48,7 @@ |
||
48 | 48 | 'lang/jobs/view', |
49 | 49 | [], |
50 | 50 | [ |
51 | - 'query' => [ 'id' => $job->getId() ], |
|
51 | + 'query' => ['id' => $job->getId()], |
|
52 | 52 | 'force_canonical' => true |
53 | 53 | ] |
54 | 54 | ); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | 'lang/jobs/view', |
49 | 49 | [], |
50 | 50 | [ |
51 | - 'query' => [ 'id' => $job->getId() ], |
|
51 | + 'query' => ['id' => $job->getId()], |
|
52 | 52 | 'force_canonical' => true |
53 | 53 | ] |
54 | 54 | ); |
@@ -208,13 +208,13 @@ discard block |
||
208 | 208 | return $this->email; |
209 | 209 | } |
210 | 210 | |
211 | - /** |
|
212 | - * @return bool |
|
213 | - */ |
|
214 | - public function getOneClickApply() |
|
215 | - { |
|
216 | - return $this->oneClickApply; |
|
217 | - } |
|
211 | + /** |
|
212 | + * @return bool |
|
213 | + */ |
|
214 | + public function getOneClickApply() |
|
215 | + { |
|
216 | + return $this->oneClickApply; |
|
217 | + } |
|
218 | 218 | |
219 | 219 | |
220 | 220 | /** |
@@ -222,29 +222,29 @@ discard block |
||
222 | 222 | * |
223 | 223 | * @return $this |
224 | 224 | */ |
225 | - public function setOneClickApply($oneClickApply) |
|
226 | - { |
|
227 | - $this->oneClickApply = (bool)$oneClickApply; |
|
225 | + public function setOneClickApply($oneClickApply) |
|
226 | + { |
|
227 | + $this->oneClickApply = (bool)$oneClickApply; |
|
228 | 228 | |
229 | - return $this; |
|
230 | - } |
|
231 | - |
|
232 | - /** |
|
233 | - * @return array |
|
234 | - */ |
|
235 | - public function getOneClickApplyProfiles() |
|
236 | - { |
|
237 | - return $this->oneClickApplyProfiles; |
|
238 | - } |
|
239 | - |
|
240 | - /** |
|
241 | - * @param array $oneClickApplyProfiles |
|
242 | - * @return AtsMode |
|
243 | - */ |
|
244 | - public function setOneClickApplyProfiles(array $oneClickApplyProfiles) |
|
245 | - { |
|
246 | - $this->oneClickApplyProfiles = $oneClickApplyProfiles; |
|
229 | + return $this; |
|
230 | + } |
|
231 | + |
|
232 | + /** |
|
233 | + * @return array |
|
234 | + */ |
|
235 | + public function getOneClickApplyProfiles() |
|
236 | + { |
|
237 | + return $this->oneClickApplyProfiles; |
|
238 | + } |
|
239 | + |
|
240 | + /** |
|
241 | + * @param array $oneClickApplyProfiles |
|
242 | + * @return AtsMode |
|
243 | + */ |
|
244 | + public function setOneClickApplyProfiles(array $oneClickApplyProfiles) |
|
245 | + { |
|
246 | + $this->oneClickApplyProfiles = $oneClickApplyProfiles; |
|
247 | 247 | |
248 | - return $this; |
|
249 | - } |
|
248 | + return $this; |
|
249 | + } |
|
250 | 250 | } |
@@ -224,7 +224,7 @@ |
||
224 | 224 | */ |
225 | 225 | public function setOneClickApply($oneClickApply) |
226 | 226 | { |
227 | - $this->oneClickApply = (bool)$oneClickApply; |
|
227 | + $this->oneClickApply = (bool) $oneClickApply; |
|
228 | 228 | |
229 | 229 | return $this; |
230 | 230 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | /** |
22 | 22 | * A new job was created. |
23 | 23 | */ |
24 | - const CREATED = /*@translate*/ 'created'; |
|
24 | + const CREATED = /*@translate*/ 'created'; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * A new job is waiting for approval |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | /** |
37 | 37 | * A Job is accepted an is going to be published |
38 | 38 | */ |
39 | - const PUBLISH = /*@translate*/ 'publish'; |
|
39 | + const PUBLISH = /*@translate*/ 'publish'; |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * A Job is online |
43 | 43 | */ |
44 | - const ACTIVE = /*@translate*/ 'active'; |
|
44 | + const ACTIVE = /*@translate*/ 'active'; |
|
45 | 45 | |
46 | 46 | /** |
47 | 47 | * A job was is set inactive |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | /** |
52 | 52 | * A job was expired |
53 | 53 | */ |
54 | - const EXPIRED = /*@translate*/ 'expired'; |
|
54 | + const EXPIRED = /*@translate*/ 'expired'; |
|
55 | 55 | |
56 | 56 | public function __construct($status = self::CREATED); |
57 | 57 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @var String |
37 | 37 | * @ODM\Field(type="string") |
38 | 38 | */ |
39 | - protected $qualifications=''; |
|
39 | + protected $qualifications = ''; |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Requirements field of the job template |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @var String |
45 | 45 | * @ODM\Field(type="string") |
46 | 46 | */ |
47 | - protected $requirements=''; |
|
47 | + protected $requirements = ''; |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Benefits field of the job template |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @var String |
53 | 53 | * @ODM\Field(type="string") |
54 | 54 | */ |
55 | - protected $benefits=''; |
|
55 | + protected $benefits = ''; |
|
56 | 56 | |
57 | 57 | /** |
58 | 58 | * Job title field of the job template |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * @var String |
61 | 61 | * @ODM\Field(type="string") |
62 | 62 | */ |
63 | - protected $title=''; |
|
63 | + protected $title = ''; |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Company description field of the job template |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @var String |
69 | 69 | * @ODM\Field(type="string") |
70 | 70 | */ |
71 | - protected $description=''; |
|
71 | + protected $description = ''; |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * language of the job template values. Must be a valid ISO 639-1 code |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @var String |
77 | 77 | * @ODM\Field(type="string") |
78 | 78 | */ |
79 | - protected $language='en'; |
|
79 | + protected $language = 'en'; |
|
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Pure HTML |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @var string |
86 | 86 | * @since 0.29 |
87 | 87 | */ |
88 | - protected $html=''; |
|
88 | + protected $html = ''; |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * free values (currently not in use) |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function setQualifications($qualifications) |
104 | 104 | { |
105 | - $this->qualifications= (string) $qualifications; |
|
105 | + $this->qualifications = (string) $qualifications; |
|
106 | 106 | return $this; |
107 | 107 | } |
108 | 108 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public function setRequirements($requirements) |
126 | 126 | { |
127 | - $this->requirements=(string) $requirements; |
|
127 | + $this->requirements = (string) $requirements; |
|
128 | 128 | return $this; |
129 | 129 | } |
130 | 130 | |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public function setBenefits($benefits) |
148 | 148 | { |
149 | - $this->benefits=(string) $benefits; |
|
149 | + $this->benefits = (string) $benefits; |
|
150 | 150 | return $this; |
151 | 151 | } |
152 | 152 | |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | */ |
169 | 169 | public function setTitle($title) |
170 | 170 | { |
171 | - $this->title=(string) $title; |
|
171 | + $this->title = (string) $title; |
|
172 | 172 | return $this; |
173 | 173 | } |
174 | 174 | |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | */ |
191 | 191 | public function setDescription($description) |
192 | 192 | { |
193 | - $this->description=(string) $description; |
|
193 | + $this->description = (string) $description; |
|
194 | 194 | return $this; |
195 | 195 | } |
196 | 196 | |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function setLanguage($language) |
214 | 214 | { |
215 | - $this->language=(string) $language; |
|
215 | + $this->language = (string) $language; |
|
216 | 216 | return $this; |
217 | 217 | } |
218 | 218 | |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | |
282 | 282 | public function __get($property) |
283 | 283 | { |
284 | - $getter = "get" . ucfirst($property); |
|
284 | + $getter = "get".ucfirst($property); |
|
285 | 285 | if (method_exists($this, $getter)) { |
286 | 286 | return $this->$getter(); |
287 | 287 | } |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | public function __set($property, $value) |
297 | 297 | { |
298 | 298 | //$this->checkWriteAccess(); |
299 | - $setter = 'set' . ucfirst($property); |
|
299 | + $setter = 'set'.ucfirst($property); |
|
300 | 300 | if (method_exists($this, $setter)) { |
301 | 301 | $this->$setter($value); |
302 | 302 | return; |
@@ -59,12 +59,12 @@ discard block |
||
59 | 59 | { |
60 | 60 | parent::__construct($status); |
61 | 61 | |
62 | - $constant = 'self::' . strtoupper(str_replace(' ', '_', $status)); |
|
62 | + $constant = 'self::'.strtoupper(str_replace(' ', '_', $status)); |
|
63 | 63 | if (!defined($constant)) { |
64 | - throw new \DomainException('Unknown status: ' . $status); |
|
64 | + throw new \DomainException('Unknown status: '.$status); |
|
65 | 65 | } |
66 | - $this->name=constant($constant); |
|
67 | - $this->order=$this->getOrder(); |
|
66 | + $this->name = constant($constant); |
|
67 | + $this->order = $this->getOrder(); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function getName() |
76 | 76 | { |
77 | - return isset($this->name)?$this->name:''; |
|
77 | + return isset($this->name) ? $this->name : ''; |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -245,6 +245,6 @@ |
||
245 | 245 | |
246 | 246 | public function __toString() |
247 | 247 | { |
248 | - return self::class . '( ' . $this->getSnapshotId() . ' )'; |
|
248 | + return self::class.'( '.$this->getSnapshotId().' )'; |
|
249 | 249 | } |
250 | 250 | } |
@@ -65,8 +65,8 @@ |
||
65 | 65 | 'link' => $this->jobUrl->__invoke( |
66 | 66 | $job, |
67 | 67 | [ |
68 | - 'linkOnly'=> true, |
|
69 | - 'absolute' => true, |
|
68 | + 'linkOnly'=> true, |
|
69 | + 'absolute' => true, |
|
70 | 70 | ] |
71 | 71 | ), |
72 | 72 | 'organization' => array( |
@@ -71,7 +71,7 @@ |
||
71 | 71 | return new JsonModel([ |
72 | 72 | 'valid' => $valid, |
73 | 73 | 'errors' => $errors |
74 | - ]); |
|
74 | + ]); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | $form->bind($job); |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | { |
58 | 58 | $params = $this->params()->fromQuery(); |
59 | 59 | return $this->pagination([ |
60 | - 'params' => [ 'Jobs_Admin', ['text', 'page' => 1, 'companyId', 'status' ] ], |
|
61 | - 'form' => [ 'as' => 'form', 'Jobs/AdminSearch' ], |
|
62 | - 'paginator' => [ 'as' => 'jobs', 'Jobs/Admin' ], |
|
60 | + 'params' => ['Jobs_Admin', ['text', 'page' => 1, 'companyId', 'status']], |
|
61 | + 'form' => ['as' => 'form', 'Jobs/AdminSearch'], |
|
62 | + 'paginator' => ['as' => 'jobs', 'Jobs/Admin'], |
|
63 | 63 | ]); |
64 | 64 | } |
65 | 65 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $oldStatus = $job->getStatus(); |
85 | 85 | $job->changeStatus($post['status'], '[System] Status changed via Admin GUI.'); |
86 | 86 | $events = $this->jobEvents; |
87 | - $events->trigger(JobEvent::EVENT_STATUS_CHANGED, $this, [ 'job' => $job, 'status' => $oldStatus ]); |
|
87 | + $events->trigger(JobEvent::EVENT_STATUS_CHANGED, $this, ['job' => $job, 'status' => $oldStatus]); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
@@ -96,6 +96,6 @@ discard block |
||
96 | 96 | |
97 | 97 | $form->bind($job); |
98 | 98 | |
99 | - return [ 'form' => $form, 'job' => $job ]; |
|
99 | + return ['form' => $form, 'job' => $job]; |
|
100 | 100 | } |
101 | 101 | } |