@@ -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 |
@@ -514,10 +514,10 @@ discard block |
||
514 | 514 | public function getLocation() |
515 | 515 | { |
516 | 516 | if (null === $this->location) { |
517 | - $array=[]; |
|
517 | + $array = []; |
|
518 | 518 | if (null != $this->locations) { |
519 | 519 | foreach ($this->locations as $location) { /* @var \Core\Entity\LocationInterface $location */ |
520 | - $array[]=(string) $location; |
|
520 | + $array[] = (string) $location; |
|
521 | 521 | } |
522 | 522 | return implode(', ', $array); |
523 | 523 | } |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | if ($removePermissions) { |
573 | 573 | $this->getPermissions()->revoke($this->user, Permissions::PERMISSION_ALL); |
574 | 574 | } |
575 | - $this->user=null; |
|
575 | + $this->user = null; |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | return $this; |
@@ -833,7 +833,7 @@ discard block |
||
833 | 833 | $organization = $this->organization; |
834 | 834 | if (is_object($organization) && $organization->getImage()) { |
835 | 835 | $organizationImage = $organization->getImage(); |
836 | - return "/file/Organizations.OrganizationImage/" . $organizationImage->getId(); |
|
836 | + return "/file/Organizations.OrganizationImage/".$organizationImage->getId(); |
|
837 | 837 | } |
838 | 838 | return $this->logoRef; |
839 | 839 | } |
@@ -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 | /** |
@@ -198,7 +198,7 @@ |
||
198 | 198 | * |
199 | 199 | * @return UserInterface $user |
200 | 200 | */ |
201 | - public function getUser() ; |
|
201 | + public function getUser(); |
|
202 | 202 | |
203 | 203 | /** |
204 | 204 | * Gets the link to the application form |
@@ -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 | } |
@@ -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 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | public function attachDefaultListeners() |
68 | 68 | { |
69 | 69 | parent::attachDefaultListeners(); |
70 | - $events = $this->getEventManager(); |
|
70 | + $events = $this->getEventManager(); |
|
71 | 71 | $this->defaultListener->attach($events); |
72 | 72 | return $this; |
73 | 73 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $getParams = $request->getQuery(); |
92 | 92 | $routeParams = $this->params()->fromRoute(); |
93 | 93 | if (isset($routeParams['q']) && !isset($getParams['q'])) { |
94 | - $getParams['q']=$routeParams['q']; |
|
94 | + $getParams['q'] = $routeParams['q']; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | $result = $this->pagination([ |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $response->setStatusCode(Response::STATUS_CODE_404); |
42 | 42 | return $response; |
43 | 43 | } |
44 | - $jsonModel=new JsonModel(); |
|
44 | + $jsonModel = new JsonModel(); |
|
45 | 45 | $jsonModel->setVariables($this->apiJobDehydrator->dehydrateList($jobs)); |
46 | 46 | $jsonModel->setJsonpCallback($callback); |
47 | 47 |