@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | /** |
241 | 241 | * Gets all comments for the application. |
242 | 242 | * |
243 | - * @return ArrayCollection; |
|
243 | + * @return Collection |
|
244 | 244 | |
245 | 245 | */ |
246 | 246 | public function getComments(); |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | /** |
272 | 272 | * Gets all attributes for an application. |
273 | 273 | * |
274 | - * @return ArrayCollection; |
|
274 | + * @return Attributes |
|
275 | 275 | |
276 | 276 | */ |
277 | 277 | public function getAttributes(); |
@@ -241,7 +241,6 @@ discard block |
||
241 | 241 | * Gets all comments for the application. |
242 | 242 | * |
243 | 243 | * @return ArrayCollection; |
244 | - |
|
245 | 244 | */ |
246 | 245 | public function getComments(); |
247 | 246 | |
@@ -272,7 +271,6 @@ discard block |
||
272 | 271 | * Gets all attributes for an application. |
273 | 272 | * |
274 | 273 | * @return ArrayCollection; |
275 | - |
|
276 | 274 | */ |
277 | 275 | public function getAttributes(); |
278 | 276 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | * returns the number of years of the education or work experience |
19 | 19 | * |
20 | 20 | * @param array $array |
21 | - * @return string |
|
21 | + * @return double |
|
22 | 22 | */ |
23 | 23 | public function __invoke($array) |
24 | 24 | { |
@@ -165,7 +165,6 @@ discard block |
||
165 | 165 | * |
166 | 166 | * parameter are arbitrary elements for defaults or programming flow |
167 | 167 | * |
168 | - * @param array $parameter |
|
169 | 168 | * @return null|ViewModel |
170 | 169 | * @throws \RuntimeException |
171 | 170 | */ |
@@ -388,7 +387,7 @@ discard block |
||
388 | 387 | |
389 | 388 | /** |
390 | 389 | * @param $job \Jobs\Entity\Job |
391 | - * @return mixed |
|
390 | + * @return \Jobs\Form\Job |
|
392 | 391 | */ |
393 | 392 | protected function getFormular($job) |
394 | 393 | { |
@@ -411,7 +410,7 @@ discard block |
||
411 | 410 | } |
412 | 411 | |
413 | 412 | /** |
414 | - * @param $form |
|
413 | + * @param \Jobs\Form\Job $form |
|
415 | 414 | * @param array $params |
416 | 415 | * @return ViewModel |
417 | 416 | */ |
@@ -604,7 +603,7 @@ discard block |
||
604 | 603 | } |
605 | 604 | |
606 | 605 | /** |
607 | - * @param $script |
|
606 | + * @param string $script |
|
608 | 607 | * @param array $parameter |
609 | 608 | * @return ViewModel |
610 | 609 | */ |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | |
57 | 57 | foreach ($document->getAttachments() as $attachment) { /* @var \Applications\Entity\Attachment $attachment */ |
58 | 58 | $attachment->getPermissions() |
59 | - ->clear() |
|
60 | - ->inherit($permissions); |
|
59 | + ->clear() |
|
60 | + ->inherit($permissions); |
|
61 | 61 | if ($isUpdate) { |
62 | 62 | $uow->computeChangeSet( |
63 | 63 | $dm->getClassMetadata(get_class($attachment)), |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | |
69 | 69 | if ($image = $document->getContact()->getImage()) { |
70 | 70 | $image->getPermissions() |
71 | - ->clear() |
|
72 | - ->inherit($permissions); |
|
71 | + ->clear() |
|
72 | + ->inherit($permissions); |
|
73 | 73 | if ($isUpdate) { |
74 | 74 | $uow->computeChangeSet( |
75 | 75 | $dm->getClassMetadata(get_class($image)), |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | { |
103 | 103 | $qb = $this->getPaginationQueryBuilder($params); |
104 | 104 | $cursor = $qb->hydrate(false) |
105 | - ->select('_id') |
|
106 | - ->getQuery() |
|
107 | - ->execute(); |
|
105 | + ->select('_id') |
|
106 | + ->getQuery() |
|
107 | + ->execute(); |
|
108 | 108 | |
109 | 109 | $list = new PaginationList(array_keys(ArrayUtils::iteratorToArray($cursor))); |
110 | 110 | return $list; |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | { |
134 | 134 | $auth=$this->getService('AuthenticationService'); |
135 | 135 | $qb=$this->createQueryBuilder() |
136 | - ->field("readBy")->notIn(array($auth->getUser()->getId())) |
|
137 | - ->field("job")->equals(new \MongoId($job->getId())); |
|
136 | + ->field("readBy")->notIn(array($auth->getUser()->getId())) |
|
137 | + ->field("job")->equals(new \MongoId($job->getId())); |
|
138 | 138 | return $qb->getQuery()->execute(); |
139 | 139 | } |
140 | 140 |
@@ -105,7 +105,7 @@ |
||
105 | 105 | $application->getComments()->add($comment); |
106 | 106 | $application->changeStatus($application->getStatus(), sprintf( |
107 | 107 | /* @translate */ 'Application was rated by %s', |
108 | - $this->auth()->getUser()->getInfo()->getDisplayName()) |
|
108 | + $this->auth()->getUser()->getInfo()->getDisplayName()) |
|
109 | 109 | ); |
110 | 110 | } |
111 | 111 | $viewModel->setVariable('isSaved', true); |
@@ -44,8 +44,8 @@ |
||
44 | 44 | $fileId = new \MongoId($file->getId()); |
45 | 45 | $dm = $eventArgs->getDocumentManager(); |
46 | 46 | $dm->createQueryBuilder('Cv\Entity\Cv') |
47 | - ->update()->multiple(true) |
|
48 | - ->field('attachments')->equals($fileId)->pull($fileId) |
|
49 | - ->getQuery()->execute(); |
|
47 | + ->update()->multiple(true) |
|
48 | + ->field('attachments')->equals($fileId)->pull($fileId) |
|
49 | + ->getQuery()->execute(); |
|
50 | 50 | } |
51 | 51 | } |