@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * |
57 | 57 | * @var string |
58 | 58 | */ |
59 | - protected $options="Applications/Options"; |
|
59 | + protected $options = "Applications/Options"; |
|
60 | 60 | |
61 | 61 | |
62 | 62 | /** |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | ->setIsDescriptionsEnabled(true) |
78 | 78 | ->setDescription( |
79 | 79 | /*@translate*/ 'Attach images or PDF Documents to your application. Drag&drop them, or click into the attachement area. You can upload up to %sMB', |
80 | - [round($size/(1024*1024))>0? round($size/(1024*1024)):round($size/(1024*1024), 1)] |
|
80 | + [round($size / (1024 * 1024)) > 0 ? round($size / (1024 * 1024)) : round($size / (1024 * 1024), 1)] |
|
81 | 81 | ) |
82 | 82 | ->setParam('return', 'file-uri') |
83 | 83 | ->setLabel(/*@translate*/ 'Attachments'); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $auth = $container->get('AuthenticationService'); |
31 | 31 | $user = $auth->getUser(); |
32 | 32 | $options['user'] = $user; |
33 | - $mail = new Confirmation($options); |
|
33 | + $mail = new Confirmation($options); |
|
34 | 34 | |
35 | 35 | return $mail; |
36 | 36 | } |
@@ -33,6 +33,6 @@ |
||
33 | 33 | */ |
34 | 34 | public function getUri() |
35 | 35 | { |
36 | - return "/file/Applications.Attachment/" . $this->id . "/" .urlencode($this->name); |
|
36 | + return "/file/Applications.Attachment/".$this->id."/".urlencode($this->name); |
|
37 | 37 | } |
38 | 38 | } |
@@ -446,7 +446,7 @@ |
||
446 | 446 | public function getCv() |
447 | 447 | { |
448 | 448 | if (is_null($this->cv)) { |
449 | - $this->cv= new Cv(); |
|
449 | + $this->cv = new Cv(); |
|
450 | 450 | } |
451 | 451 | return $this->cv; |
452 | 452 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | /** |
21 | 21 | * A new application has been received |
22 | 22 | */ |
23 | - const INCOMING = 'incoming'; |
|
23 | + const INCOMING = 'incoming'; |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * An acknowledgement of receipt has been sent |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | /** |
31 | 31 | * An applicant ist invited to in interview |
32 | 32 | */ |
33 | - const INVITED = 'invited'; |
|
33 | + const INVITED = 'invited'; |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * The applicant has been canceled |
37 | 37 | */ |
38 | - const REJECTED = 'rejected'; |
|
38 | + const REJECTED = 'rejected'; |
|
39 | 39 | |
40 | 40 | public function __construct($status = self::INCOMING); |
41 | 41 |
@@ -50,12 +50,12 @@ |
||
50 | 50 | |
51 | 51 | public function __construct($status = self::INCOMING) |
52 | 52 | { |
53 | - $constant = 'self::' . strtoupper($status); |
|
53 | + $constant = 'self::'.strtoupper($status); |
|
54 | 54 | if (!defined($constant)) { |
55 | - throw new \DomainException('Unknown status: ' . $status); |
|
55 | + throw new \DomainException('Unknown status: '.$status); |
|
56 | 56 | } |
57 | - $this->name=constant($constant); |
|
58 | - $this->order=$this->getOrder(); |
|
57 | + $this->name = constant($constant); |
|
58 | + $this->order = $this->getOrder(); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -174,11 +174,11 @@ |
||
174 | 174 | return ''; |
175 | 175 | } |
176 | 176 | |
177 | - $token = $user instanceof AnonymousUser ? '?token=' . $user->getToken() : ''; |
|
177 | + $token = $user instanceof AnonymousUser ? '?token='.$user->getToken() : ''; |
|
178 | 178 | $href = $router->assemble( |
179 | 179 | ['id' => $this->application->getId()], |
180 | 180 | ['name'=>'lang/applications/detail', 'force_canonical'=>true] |
181 | - ) . $token; |
|
181 | + ).$token; |
|
182 | 182 | |
183 | 183 | return $href; |
184 | 184 | } |
@@ -136,7 +136,7 @@ |
||
136 | 136 | * |
137 | 137 | * @return Forward |
138 | 138 | */ |
139 | - public static function factory(ContainerInterface $container, $requestedName, array $options=[]) |
|
139 | + public static function factory(ContainerInterface $container, $requestedName, array $options = []) |
|
140 | 140 | { |
141 | 141 | $ob = new self($options); |
142 | 142 | $ob->setContainer($container); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $hidden = ''; |
71 | 71 | $displayNames = array(); |
72 | 72 | foreach ($elements as $element) { |
73 | - $hidden .= '<input type="hidden" name="elements[]" value="' . $element . '">'; |
|
73 | + $hidden .= '<input type="hidden" name="elements[]" value="'.$element.'">'; |
|
74 | 74 | $application = $repository->find($element); |
75 | 75 | $isAllowed = $this->acl()->test($application, 'change'); |
76 | 76 | if ($isAllowed) { |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | array( |
90 | 90 | 'ok' => true, |
91 | 91 | 'header' => $translator->translate('reject the applicants'), |
92 | - 'content' => '<form action="' . $actionUrl . '">' . |
|
93 | - $hidden . |
|
92 | + 'content' => '<form action="'.$actionUrl.'">'. |
|
93 | + $hidden. |
|
94 | 94 | '<input class=" form-control " name="mail-subject" value="' |
95 | - . $mailSubject . '"><br /><br />' . |
|
95 | + . $mailSubject.'"><br /><br />'. |
|
96 | 96 | '<textarea class=" form-control " id="mail-content" name="mail-content">' |
97 | - . $mailText . '</textarea></form>' |
|
97 | + . $mailText.'</textarea></form>' |
|
98 | 98 | ) |
99 | 99 | ); |
100 | 100 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $repositoryService->store($application); |
143 | 143 | unset($mail); |
144 | 144 | } |
145 | - return new JsonModel(array('ok' => true, )); |
|
145 | + return new JsonModel(array('ok' => true,)); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | /** |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function moveAction() |
154 | 154 | { |
155 | - $ids = (array)$this->params()->fromPost('ids'); |
|
155 | + $ids = (array) $this->params()->fromPost('ids'); |
|
156 | 156 | $moved = 0; |
157 | 157 | |
158 | 158 | if ($ids) { |