@@ -404,7 +404,7 @@ |
||
| 404 | 404 | /** |
| 405 | 405 | * {@inheritDoc} |
| 406 | 406 | * @see \Applications\Entity\ApplicationInterface::getSummary() |
| 407 | - * @return Application |
|
| 407 | + * @return string |
|
| 408 | 408 | */ |
| 409 | 409 | public function getSummary() |
| 410 | 410 | { |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | /** |
| 122 | 122 | * Gets the the maximum number of allowed attachments |
| 123 | 123 | * |
| 124 | - * @return string |
|
| 124 | + * @return integer |
|
| 125 | 125 | */ |
| 126 | 126 | public function getAttachmentsCount() |
| 127 | 127 | { |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | /** |
| 143 | 143 | * Gets the the maximum size of contact images in bytes |
| 144 | 144 | * |
| 145 | - * @return string |
|
| 145 | + * @return integer |
|
| 146 | 146 | */ |
| 147 | 147 | public function getContactImageMaxSize() |
| 148 | 148 | { |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | protected $workflow = [ |
| 82 | 82 | |
| 83 | - 'recruiter', |
|
| 83 | + 'recruiter', |
|
| 84 | 84 | ]; |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -218,13 +218,13 @@ discard block |
||
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | /** |
| 221 | - * @return boolean |
|
| 222 | - * @since 0.27 |
|
| 223 | - */ |
|
| 224 | - public function getAllowSubsequentAttachmentUpload() |
|
| 225 | - { |
|
| 226 | - return $this->allowSubsequentAttachmentUpload; |
|
| 227 | - } |
|
| 221 | + * @return boolean |
|
| 222 | + * @since 0.27 |
|
| 223 | + */ |
|
| 224 | + public function getAllowSubsequentAttachmentUpload() |
|
| 225 | + { |
|
| 226 | + return $this->allowSubsequentAttachmentUpload; |
|
| 227 | + } |
|
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | 230 | * @param boolean $allowSubsequentAttachmentUpload |
@@ -35,8 +35,8 @@ |
||
| 35 | 35 | /** |
| 36 | 36 | * Updates fiile permissions on Flush |
| 37 | 37 | * |
| 38 | - * @param OnFlushEventArgs $eventArgs |
|
| 39 | - * @return boolean |
|
| 38 | + * @param LifecycleEventArgs $eventArgs |
|
| 39 | + * @return boolean|null |
|
| 40 | 40 | */ |
| 41 | 41 | public function postRemoveEntity(LifecycleEventArgs $eventArgs) |
| 42 | 42 | { |
@@ -51,14 +51,14 @@ |
||
| 51 | 51 | $fileId = new \MongoId($file->id); |
| 52 | 52 | |
| 53 | 53 | $dm->createQueryBuilder('Applications\Entity\Application') |
| 54 | - ->update()->multiple(true) |
|
| 55 | - ->field('attachments')->equals($fileId)->pull($fileId) |
|
| 56 | - ->getQuery()->execute(); |
|
| 54 | + ->update()->multiple(true) |
|
| 55 | + ->field('attachments')->equals($fileId)->pull($fileId) |
|
| 56 | + ->getQuery()->execute(); |
|
| 57 | 57 | |
| 58 | 58 | |
| 59 | 59 | $dm->createQueryBuilder('Applications\Entity\Application') |
| 60 | - ->update()->multiple(true) |
|
| 61 | - ->field('contact.image')->equals($fileId)->set(null) |
|
| 62 | - ->getQuery()->execute(); |
|
| 60 | + ->update()->multiple(true) |
|
| 61 | + ->field('contact.image')->equals($fileId)->set(null) |
|
| 62 | + ->getQuery()->execute(); |
|
| 63 | 63 | } |
| 64 | 64 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | * Updates fiile permissions on Flush |
| 36 | 36 | * |
| 37 | 37 | * @param OnFlushEventArgs $eventArgs |
| 38 | - * @return boolean |
|
| 38 | + * @return boolean|null |
|
| 39 | 39 | */ |
| 40 | 40 | public function onFlush(OnFlushEventArgs $eventArgs) |
| 41 | 41 | { |
@@ -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)), |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | * |
| 26 | 26 | * @see \Zend\ServiceManager\FactoryInterface::createService() |
| 27 | 27 | * @param ServiceLocatorInterface $serviceLocator |
| 28 | - * @return \Applications\Repository\Filter\PaginationQuery|mixed |
|
| 28 | + * @return PaginationQuery |
|
| 29 | 29 | */ |
| 30 | 30 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 31 | 31 | { |
@@ -57,7 +57,6 @@ |
||
| 57 | 57 | * Attach to an event manager |
| 58 | 58 | * |
| 59 | 59 | * @param EventManagerInterface $events |
| 60 | - * @param integer $priority |
|
| 61 | 60 | */ |
| 62 | 61 | public function attach(EventManagerInterface $events) |
| 63 | 62 | { |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @param EventManagerInterface $events |
| 60 | 60 | * @param integer $priority |
| 61 | - */ |
|
| 61 | + */ |
|
| 62 | 62 | public function attach(EventManagerInterface $events) |
| 63 | 63 | { |
| 64 | 64 | $this->listeners[] = $events->attach(MvcEvent::EVENT_ROUTE, array($this, 'onRoute'), -10); |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | |
| 117 | 117 | if ($resourceId && !$acl->isAllowed($role, $resourceId, $privilege)) { |
| 118 | - /* |
|
| 118 | + /* |
|
| 119 | 119 | * Exceptions are only catched within the dispatch listener, so |
| 120 | 120 | * we have to set the exception manually in the event |
| 121 | 121 | * and trigger the DISPATCH_ERROR event. |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | * {@inheritDoc} |
| 43 | - * @return GroupsUsersCollection |
|
| 43 | + * @return GroupUsersCollection |
|
| 44 | 44 | * @see \Core\Form\ViewPartialProviderInterface::setViewPartial() |
| 45 | 45 | */ |
| 46 | 46 | public function setViewPartial($partial) |
@@ -98,9 +98,9 @@ |
||
| 98 | 98 | ); |
| 99 | 99 | |
| 100 | 100 | $this->setCount(0) |
| 101 | - ->setAllowRemove(true) |
|
| 102 | - ->setAllowAdd(true) |
|
| 103 | - ->setShouldCreateTemplate(true); |
|
| 101 | + ->setAllowRemove(true) |
|
| 102 | + ->setAllowAdd(true) |
|
| 103 | + ->setShouldCreateTemplate(true); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * {@inheritDoc} |
| 35 | - * @return UserInfoContainer |
|
| 35 | + * @return string |
|
| 36 | 36 | * @see \Core\Form\ViewPartialProviderInterface::getViewPartial() |
| 37 | 37 | */ |
| 38 | 38 | public function getViewPartial() |
@@ -121,7 +121,7 @@ |
||
| 121 | 121 | /** |
| 122 | 122 | * Sets the From: of the mail header |
| 123 | 123 | * |
| 124 | - * @param $fromName |
|
| 124 | + * @param string $fromName |
|
| 125 | 125 | * @return $this |
| 126 | 126 | */ |
| 127 | 127 | public function setFromName($fromName) |