@@ -237,7 +237,7 @@ |
||
| 237 | 237 | */ |
| 238 | 238 | public function setAllowSubsequentAttachmentUpload($allowSubsequentAttachmentUpload) |
| 239 | 239 | { |
| 240 | - $this->allowSubsequentAttachmentUpload = (bool)$allowSubsequentAttachmentUpload; |
|
| 240 | + $this->allowSubsequentAttachmentUpload = (bool) $allowSubsequentAttachmentUpload; |
|
| 241 | 241 | |
| 242 | 242 | return $this; |
| 243 | 243 | } |
@@ -131,8 +131,8 @@ |
||
| 131 | 131 | */ |
| 132 | 132 | public function loadUnreadApplicationsForJob($job) |
| 133 | 133 | { |
| 134 | - $auth=$this->getService('AuthenticationService'); |
|
| 135 | - $qb=$this->createQueryBuilder() |
|
| 134 | + $auth = $this->getService('AuthenticationService'); |
|
| 135 | + $qb = $this->createQueryBuilder() |
|
| 136 | 136 | ->field("readBy")->notIn(array($auth->getUser()->getId())) |
| 137 | 137 | ->field("job")->equals(new \MongoId($job->getId())); |
| 138 | 138 | return $qb->getQuery()->execute(); |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $dm = $eventArgs->getDocumentManager(); |
| 43 | 43 | $uow = $dm->getUnitOfWork(); |
| 44 | 44 | |
| 45 | - $filter = function ($element) { |
|
| 45 | + $filter = function($element) { |
|
| 46 | 46 | return $element instanceof ApplicationInterface |
| 47 | 47 | && $element->getPermissions()->hasChanged(); |
| 48 | 48 | }; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * |
| 24 | 24 | * @var String |
| 25 | 25 | */ |
| 26 | - protected $repositoryName="Applications/Application"; |
|
| 26 | + protected $repositoryName = "Applications/Application"; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Sortable fields |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $searchPatterns = array(); |
| 82 | 82 | |
| 83 | 83 | foreach (explode(' ', $search) as $searchItem) { |
| 84 | - $searchPatterns[] = new \MongoRegex('/^' . $searchItem . '/'); |
|
| 84 | + $searchPatterns[] = new \MongoRegex('/^'.$searchItem.'/'); |
|
| 85 | 85 | } |
| 86 | 86 | $queryBuilder->field('keywords')->all($searchPatterns); |
| 87 | 87 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
| 30 | 30 | { |
| 31 | - $auth = $container->get('AuthenticationService'); |
|
| 31 | + $auth = $container->get('AuthenticationService'); |
|
| 32 | 32 | $filter = new PaginationQuery($auth); |
| 33 | 33 | return $filter; |
| 34 | 34 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function findByUri($uri, $create = false) |
| 27 | 27 | { |
| 28 | - $subscriber = $this->findOneBy(array( "uri" => $uri )); |
|
| 28 | + $subscriber = $this->findOneBy(array("uri" => $uri)); |
|
| 29 | 29 | if (!isset($subscriber) && $create) { |
| 30 | 30 | $subscriber = $this->create(); |
| 31 | 31 | $subscriber->uri = $uri; |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | class JobSelect extends Select implements HeadscriptProviderInterface |
| 24 | 24 | { |
| 25 | - private $scripts = [ 'modules/Applications/js/form.job-select.js' ]; |
|
| 25 | + private $scripts = ['modules/Applications/js/form.job-select.js']; |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * Sets the array of script names. |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | * |
| 25 | 25 | * @var string |
| 26 | 26 | */ |
| 27 | - protected $label = /*@translate*/ 'Cover Letter'; |
|
| 27 | + protected $label = /*@translate*/ 'Cover Letter'; |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * {@inheritDoc} |
@@ -49,6 +49,6 @@ |
||
| 49 | 49 | */ |
| 50 | 50 | public function getConfig() |
| 51 | 51 | { |
| 52 | - return ModuleConfigLoader::load(__DIR__ . '/../config'); |
|
| 52 | + return ModuleConfigLoader::load(__DIR__.'/../config'); |
|
| 53 | 53 | } |
| 54 | 54 | } |