@@ -40,8 +40,8 @@ |
||
40 | 40 | |
41 | 41 | $plugin = new AcceptInvitationHandler(); |
42 | 42 | $plugin->setUserRepository($userRepository) |
43 | - ->setOrganizationRepository($organizationRepository) |
|
44 | - ->setAuthenticationService($authenticationService); |
|
43 | + ->setOrganizationRepository($organizationRepository) |
|
44 | + ->setAuthenticationService($authenticationService); |
|
45 | 45 | |
46 | 46 | return $plugin; |
47 | 47 | } |
@@ -62,6 +62,6 @@ |
||
62 | 62 | ) |
63 | 63 | ) |
64 | 64 | ) |
65 | - ); |
|
65 | + ); |
|
66 | 66 | } |
67 | 67 | } |
@@ -23,8 +23,8 @@ |
||
23 | 23 | { |
24 | 24 | |
25 | 25 | /** (non-PHPdoc) |
26 | - * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
27 | - */ |
|
26 | + * @see \Zend\ServiceManager\FactoryInterface::createService() |
|
27 | + */ |
|
28 | 28 | public function createService(ServiceLocatorInterface $serviceLocator) |
29 | 29 | { |
30 | 30 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | $configArray = isset($configArray['paginator_manager']) ? $configArray['paginator_manager'] : array(); |
33 | 33 | $config = new PaginatorServiceConfig($configArray); |
34 | 34 | |
35 | - $service = new PaginatorService($serviceLocator, $config); |
|
35 | + $service = new PaginatorService($serviceLocator, $config); |
|
36 | 36 | |
37 | 37 | return $service; |
38 | 38 | } |
@@ -136,13 +136,13 @@ |
||
136 | 136 | { |
137 | 137 | $mail = $this->mailer->get('htmltemplate'); |
138 | 138 | $mail->setTemplate($template) |
139 | - ->setSubject($subject) |
|
140 | - ->setVariables( |
|
141 | - array( |
|
139 | + ->setSubject($subject) |
|
140 | + ->setVariables( |
|
141 | + array( |
|
142 | 142 | 'job' => $job, |
143 | 143 | 'siteName' => $this->options['siteName'], |
144 | 144 | ) |
145 | - ); |
|
145 | + ); |
|
146 | 146 | |
147 | 147 | if ($adminMail) { |
148 | 148 | $mail->setTo($this->options['adminEmail']); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * Gets the Job Titles of a certain user. |
69 | 69 | * |
70 | 70 | * @param $query |
71 | - * @param $userId |
|
71 | + * @param \Auth\Controller\Plugin\Auth $userId |
|
72 | 72 | * @return mixed |
73 | 73 | * @throws \Doctrine\ODM\MongoDB\MongoDBException |
74 | 74 | */ |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * Look for an drafted Document of a given user |
93 | 93 | * |
94 | - * @param $user |
|
94 | + * @param \Auth\Entity\AnonymousUser $user |
|
95 | 95 | * @return \Jobs\Entity\Job|null |
96 | 96 | */ |
97 | 97 | public function findDraft($user) |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | { |
56 | 56 | $qb = $this->createQueryBuilder(); |
57 | 57 | $qb->hydrate(false) |
58 | - ->select('applyId') |
|
59 | - ->field('applyId')->equals($applyId); |
|
58 | + ->select('applyId') |
|
59 | + ->field('applyId')->equals($applyId); |
|
60 | 60 | |
61 | 61 | $result = $qb->getQuery()->execute(); |
62 | 62 | $count = $result->count(); |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | { |
89 | 89 | $qb = $this->createQueryBuilder(); |
90 | 90 | $qb->hydrate(false) |
91 | - ->select('title', 'applyId') |
|
92 | - ->field('permissions.view')->equals($userId) |
|
93 | - ->field('title')->equals(new \MongoRegex('/' . $query . '/i')) |
|
94 | - ->sort('title') |
|
95 | - ->limit(5); |
|
91 | + ->select('title', 'applyId') |
|
92 | + ->field('permissions.view')->equals($userId) |
|
93 | + ->field('title')->equals(new \MongoRegex('/' . $query . '/i')) |
|
94 | + ->sort('title') |
|
95 | + ->limit(5); |
|
96 | 96 | |
97 | 97 | $result = $qb->getQuery()->execute(); |
98 | 98 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $qb = $this->createQueryBuilder(); |
160 | 160 | $qb->distinct('organization') |
161 | 161 | ->hydrate(true) |
162 | - ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]); |
|
162 | + ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]); |
|
163 | 163 | |
164 | 164 | $q = $qb->getQuery(); |
165 | 165 | $r = $q->execute(); |
@@ -229,8 +229,8 @@ discard block |
||
229 | 229 | |
230 | 230 | if (null !== $isDeleted) { |
231 | 231 | $qb->addAnd( |
232 | - $qb->expr()->addOr($qb->expr()->field('isDeleted')->equals($isDeleted)) |
|
233 | - ->addOr($qb->expr()->field('isDeleted')->exists(false)) |
|
232 | + $qb->expr()->addOr($qb->expr()->field('isDeleted')->equals($isDeleted)) |
|
233 | + ->addOr($qb->expr()->field('isDeleted')->exists(false)) |
|
234 | 234 | ); |
235 | 235 | } |
236 | 236 |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | public function findByAssignedPermissionsResourceId($resourceId) |
71 | 71 | { |
72 | 72 | $criteria = $this->getIsDeletedCriteria( |
73 | - ['permissions.assigned.' . $resourceId => [ '$exists' => true]] |
|
73 | + ['permissions.assigned.'.$resourceId => ['$exists' => true]] |
|
74 | 74 | ); |
75 | 75 | |
76 | 76 | return $this->findBy($criteria); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $qb->hydrate(false) |
91 | 91 | ->select('title', 'applyId') |
92 | 92 | ->field('permissions.view')->equals($userId) |
93 | - ->field('title')->equals(new \MongoRegex('/' . $query . '/i')) |
|
93 | + ->field('title')->equals(new \MongoRegex('/'.$query.'/i')) |
|
94 | 94 | ->sort('title') |
95 | 95 | ->limit(5); |
96 | 96 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $qb = $this->createQueryBuilder(); |
160 | 160 | $qb->distinct('organization') |
161 | 161 | ->hydrate(true) |
162 | - ->field('status.name')->notIn([ StatusInterface::EXPIRED, StatusInterface::INACTIVE ]); |
|
162 | + ->field('status.name')->notIn([StatusInterface::EXPIRED, StatusInterface::INACTIVE]); |
|
163 | 163 | |
164 | 164 | $q = $qb->getQuery(); |
165 | 165 | $r = $q->execute(); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | $qb = $this->dm->createQueryBuilder('Organizations\Entity\Organization'); |
169 | 169 | $qb->field('_id')->in($r); |
170 | 170 | if ($term) { |
171 | - $qb->field('_organizationName')->equals(new \MongoRegex('/' . addslashes($term) . '/i')); |
|
171 | + $qb->field('_organizationName')->equals(new \MongoRegex('/'.addslashes($term).'/i')); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | $q = $qb->getQuery(); |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | */ |
226 | 226 | public function createQueryBuilder($isDeleted = false) |
227 | 227 | { |
228 | - $qb = parent::createQueryBuilder(); |
|
228 | + $qb = parent::createQueryBuilder(); |
|
229 | 229 | |
230 | 230 | if (null !== $isDeleted) { |
231 | 231 | $qb->addAnd( |
@@ -158,7 +158,7 @@ |
||
158 | 158 | */ |
159 | 159 | public function typeaheadAction() |
160 | 160 | { |
161 | - $query = $this->params()->fromQuery('q', '*'); |
|
161 | + $query = $this->params()->fromQuery('q', '*'); |
|
162 | 162 | |
163 | 163 | $return = array(); |
164 | 164 | foreach ($this->jobRepository->getTypeaheadResults($query, $this->auth('id')) as $id => $item) { |
@@ -36,11 +36,11 @@ |
||
36 | 36 | } |
37 | 37 | $entity = new Location(); |
38 | 38 | $entity->setCity($data['city']) |
39 | - ->setRegion($data['region']) |
|
40 | - ->setPostalcode($data['postalcode']) |
|
41 | - ->setCountry($data['country']); |
|
39 | + ->setRegion($data['region']) |
|
40 | + ->setPostalcode($data['postalcode']) |
|
41 | + ->setCountry($data['country']); |
|
42 | 42 | if (!empty($data['coordinates'])) { |
43 | - $entity->setCoordinates(new Point($data['coordinates'])); |
|
43 | + $entity->setCoordinates(new Point($data['coordinates'])); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | return $entity; |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | $coordinates = $location->getCoordinates(); |
72 | 72 | $data = [ |
73 | 73 | "geometry" => [ |
74 | - "coordinates" => $coordinates?$coordinates->getCoordinates():[0,0], |
|
75 | - "type" => $coordinates?$coordinates->getType():'Point' |
|
74 | + "coordinates" => $coordinates ? $coordinates->getCoordinates() : [0, 0], |
|
75 | + "type" => $coordinates ? $coordinates->getType() : 'Point' |
|
76 | 76 | ], |
77 | 77 | "type" => "Feature", |
78 | 78 | "properties" => [ |
@@ -82,9 +82,9 @@ discard block |
||
82 | 82 | "postcode" => $location->getPostalcode() |
83 | 83 | ] |
84 | 84 | ]; |
85 | - return $location->getCity() . '|' . Json::encode($data); |
|
85 | + return $location->getCity().'|'.Json::encode($data); |
|
86 | 86 | } else { |
87 | - return $location->getCity() . ', ' . $location->getRegion(); |
|
87 | + return $location->getCity().', '.$location->getRegion(); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | public function toCoordinates($input) { |
99 | 99 | $client = new Client('http://api.cross-solution.de/geo'); |
100 | 100 | $client->setMethod('GET'); |
101 | - $client->setParameterGet(array('q' => $input, 'country' => 'DE', 'coor' => 1, 'zoom' => 1 , 'strict' => 0)); |
|
101 | + $client->setParameterGet(array('q' => $input, 'country' => 'DE', 'coor' => 1, 'zoom' => 1, 'strict' => 0)); |
|
102 | 102 | $response = $client->send(); |
103 | 103 | $result = $response->getBody(); |
104 | 104 | $result = json_decode($result); |
@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | public function filter($value) |
67 | 67 | { |
68 | - $htmlPurifier = $this->getHtmlPurifier(); |
|
69 | - return $htmlPurifier->filter($value); |
|
68 | + $htmlPurifier = $this->getHtmlPurifier(); |
|
69 | + return $htmlPurifier->filter($value); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | \ No newline at end of file |
@@ -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 |