@@ -380,10 +380,10 @@ |
||
380 | 380 | return $this; |
381 | 381 | } |
382 | 382 | |
383 | - /** |
|
384 | - * (non-PHPdoc) |
|
385 | - * @see \Jobs\Entity\JobInterface::getOrganization() |
|
386 | - */ |
|
383 | + /** |
|
384 | + * (non-PHPdoc) |
|
385 | + * @see \Jobs\Entity\JobInterface::getOrganization() |
|
386 | + */ |
|
387 | 387 | public function getOrganization() |
388 | 388 | { |
389 | 389 | return $this->organization; |
@@ -503,7 +503,7 @@ discard block |
||
503 | 503 | } |
504 | 504 | /** |
505 | 505 | * Gets the number of unread applications |
506 | - * @return Collection |
|
506 | + * @return integer |
|
507 | 507 | */ |
508 | 508 | public function getUnreadApplications() |
509 | 509 | { |
@@ -917,7 +917,7 @@ discard block |
||
917 | 917 | } |
918 | 918 | |
919 | 919 | /** |
920 | - * @return Job |
|
920 | + * @return JobSnapshot |
|
921 | 921 | */ |
922 | 922 | public function makeSnapshot() |
923 | 923 | { |
@@ -480,7 +480,7 @@ discard block |
||
480 | 480 | if ($removePermissions) { |
481 | 481 | $this->getPermissions()->revoke($this->user, Permissions::PERMISSION_ALL); |
482 | 482 | } |
483 | - $this->user=null; |
|
483 | + $this->user = null; |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | return $this; |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | $organization = $this->organization; |
706 | 706 | if (isset($organization) && isset($organization->image)) { |
707 | 707 | $organizationImage = $organization->image; |
708 | - return "/file/Organizations.OrganizationImage/" . $organizationImage->id; |
|
708 | + return "/file/Organizations.OrganizationImage/".$organizationImage->id; |
|
709 | 709 | } |
710 | 710 | return $this->logoRef; |
711 | 711 | } |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | $result = $this->forward()->dispatch('Auth\Controller\Password', array('action' => 'index')); |
100 | 100 | $model = new ViewModel( |
101 | 101 | array( |
102 | - 'organization' => $organization->getOrganizationName()->getName() |
|
103 | - ) |
|
102 | + 'organization' => $organization->getOrganizationName()->getName() |
|
103 | + ) |
|
104 | 104 | ); |
105 | 105 | |
106 | 106 | if (!$result->getVariable('valid', false)) { |
@@ -141,8 +141,8 @@ discard block |
||
141 | 141 | |
142 | 142 | return new ViewModel( |
143 | 143 | array( |
144 | - 'organization' => $organization->getOrganizationName()->getName() |
|
145 | - ) |
|
144 | + 'organization' => $organization->getOrganizationName()->getName() |
|
145 | + ) |
|
146 | 146 | ); |
147 | 147 | } |
148 | 148 |
@@ -27,53 +27,53 @@ discard block |
||
27 | 27 | $this->setName('installation'); |
28 | 28 | $this->setAttributes( |
29 | 29 | array( |
30 | - 'method' => 'post', |
|
31 | - 'action' => '?p=install' |
|
32 | - ) |
|
30 | + 'method' => 'post', |
|
31 | + 'action' => '?p=install' |
|
32 | + ) |
|
33 | 33 | ); |
34 | 34 | |
35 | 35 | $this->add( |
36 | 36 | array( |
37 | - 'type' => 'Text', |
|
38 | - 'name' => 'db_conn', |
|
39 | - 'options' => array( |
|
40 | - 'label' => /* @translate */ 'Database connection string', |
|
41 | - ), |
|
42 | - 'attributes' => array( |
|
43 | - 'placeholder' => 'mongodb://localhost:27017/YAWIK', |
|
44 | - ), |
|
37 | + 'type' => 'Text', |
|
38 | + 'name' => 'db_conn', |
|
39 | + 'options' => array( |
|
40 | + 'label' => /* @translate */ 'Database connection string', |
|
41 | + ), |
|
42 | + 'attributes' => array( |
|
43 | + 'placeholder' => 'mongodb://localhost:27017/YAWIK', |
|
44 | + ), |
|
45 | 45 | |
46 | - ) |
|
46 | + ) |
|
47 | 47 | ); |
48 | 48 | |
49 | 49 | $this->add( |
50 | 50 | array( |
51 | - 'type' => 'Text', |
|
52 | - 'name' => 'username', |
|
53 | - 'options' => array( |
|
54 | - 'label' => /* @translate */ 'Initial user name', |
|
55 | - ), |
|
56 | - ) |
|
51 | + 'type' => 'Text', |
|
52 | + 'name' => 'username', |
|
53 | + 'options' => array( |
|
54 | + 'label' => /* @translate */ 'Initial user name', |
|
55 | + ), |
|
56 | + ) |
|
57 | 57 | ); |
58 | 58 | |
59 | 59 | $this->add( |
60 | 60 | array( |
61 | - 'type' => 'Password', |
|
62 | - 'name' => 'password', |
|
63 | - 'options' => array( |
|
64 | - 'label' => /* @translate */ 'Password', |
|
65 | - ), |
|
66 | - ) |
|
61 | + 'type' => 'Password', |
|
62 | + 'name' => 'password', |
|
63 | + 'options' => array( |
|
64 | + 'label' => /* @translate */ 'Password', |
|
65 | + ), |
|
66 | + ) |
|
67 | 67 | ); |
68 | 68 | |
69 | 69 | $this->add( |
70 | 70 | array( |
71 | - 'type' => 'Text', |
|
72 | - 'name' => 'email', |
|
73 | - 'options' => array( |
|
74 | - 'label' => /* @translate */ 'Email address for system messages', |
|
75 | - ), |
|
76 | - ) |
|
71 | + 'type' => 'Text', |
|
72 | + 'name' => 'email', |
|
73 | + 'options' => array( |
|
74 | + 'label' => /* @translate */ 'Email address for system messages', |
|
75 | + ), |
|
76 | + ) |
|
77 | 77 | ); |
78 | 78 | } |
79 | 79 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ), |
89 | 89 | 'validators' => array( |
90 | 90 | array('name' => 'Install/ConnectionString', |
91 | - 'break_chain_on_failure' => true), |
|
91 | + 'break_chain_on_failure' => true), |
|
92 | 92 | array('name' => 'Install/Connection'), |
93 | 93 | ), |
94 | 94 | ), |
@@ -26,7 +26,7 @@ |
||
26 | 26 | 'odm_default' => array( |
27 | 27 | 'subscribers' => array( |
28 | 28 | 'Settings/InjectEntityResolverListener', |
29 | - ), |
|
29 | + ), |
|
30 | 30 | ), |
31 | 31 | ), |
32 | 32 | ), |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | 'translation_file_patterns' => array( |
38 | 38 | array( |
39 | 39 | 'type' => 'gettext', |
40 | - 'base_dir' => __DIR__ . '/../language', |
|
40 | + 'base_dir' => __DIR__.'/../language', |
|
41 | 41 | 'pattern' => '%s.mo', |
42 | 42 | ), |
43 | 43 | ), |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | // Where to look for view templates not mapped above |
102 | 102 | 'template_path_stack' => array( |
103 | - __DIR__ . '/../view', |
|
103 | + __DIR__.'/../view', |
|
104 | 104 | ), |
105 | 105 | ), |
106 | 106 |
@@ -60,9 +60,9 @@ |
||
60 | 60 | protected function addButtonsFieldset() |
61 | 61 | { |
62 | 62 | $this->add( |
63 | - array( |
|
64 | - 'type' => 'Jobs/MultipostButtonFieldset' |
|
65 | - ) |
|
63 | + array( |
|
64 | + 'type' => 'Jobs/MultipostButtonFieldset' |
|
65 | + ) |
|
66 | 66 | ); |
67 | 67 | } |
68 | 68 | } |
@@ -111,7 +111,7 @@ |
||
111 | 111 | |
112 | 112 | /** |
113 | 113 | * @param mixed $value |
114 | - * @return mixed|ViewModel |
|
114 | + * @return ViewModel |
|
115 | 115 | * @throws \InvalidArgumentException |
116 | 116 | */ |
117 | 117 | public function filter($value) |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | if (!isset($this->job)) { |
124 | 124 | throw new \InvalidArgumentException('cannot create a viewModel for Templates without an $job'); |
125 | 125 | } |
126 | - $model->setTemplate('templates/' . $this->job->getTemplate() . '/index'); |
|
126 | + $model->setTemplate('templates/'.$this->job->getTemplate().'/index'); |
|
127 | 127 | return $model; |
128 | 128 | } |
129 | 129 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | throw new \InvalidArgumentException('cannot create a viewModel for Templates without aa $job'); |
172 | 172 | } |
173 | 173 | $location = $this->job->getLocation(); |
174 | - $this->container['location'] = isset($location)?$location:''; |
|
174 | + $this->container['location'] = isset($location) ? $location : ''; |
|
175 | 175 | return $this; |
176 | 176 | } |
177 | 177 | |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | } |
193 | 193 | $description = $this->job->templateValues->description; |
194 | 194 | |
195 | - $this->container['description'] = isset($description)?$description:''; |
|
195 | + $this->container['description'] = isset($description) ? $description : ''; |
|
196 | 196 | return $this; |
197 | 197 | } |
198 | 198 | |
@@ -256,9 +256,9 @@ discard block |
||
256 | 256 | if (!isset($this->job)) { |
257 | 257 | throw new \InvalidArgumentException('cannot create a viewModel for Templates without a $job'); |
258 | 258 | } |
259 | - $labelQualifications=''; |
|
260 | - $labelBenefits=''; |
|
261 | - $labelRequirements=''; |
|
259 | + $labelQualifications = ''; |
|
260 | + $labelBenefits = ''; |
|
261 | + $labelRequirements = ''; |
|
262 | 262 | |
263 | 263 | $organization = $this->job->organization; |
264 | 264 | if (isset($organization)) { |
@@ -101,7 +101,7 @@ |
||
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
104 | - /** |
|
104 | + /** |
|
105 | 105 | * @return mixed |
106 | 106 | */ |
107 | 107 | public function getServerUrlHelper() |
@@ -61,8 +61,8 @@ |
||
61 | 61 | $file = $this->getFileEntity(); |
62 | 62 | |
63 | 63 | $file->setName($value['name']) |
64 | - ->setType($value['type']) |
|
65 | - ->setFile($value['tmp_name']); |
|
64 | + ->setType($value['type']) |
|
65 | + ->setFile($value['tmp_name']); |
|
66 | 66 | |
67 | 67 | return $file; |
68 | 68 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | public function getConfig() |
27 | 27 | { |
28 | - return ModuleConfigLoader::load(__DIR__ . '/config'); |
|
28 | + return ModuleConfigLoader::load(__DIR__ . '/config'); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function getConfig() |
27 | 27 | { |
28 | - return ModuleConfigLoader::load(__DIR__ . '/config'); |
|
28 | + return ModuleConfigLoader::load(__DIR__.'/config'); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | return array( |
40 | 40 | 'Zend\Loader\StandardAutoloader' => array( |
41 | 41 | 'namespaces' => array( |
42 | - __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, |
|
43 | - 'OrganizationsTest' => __DIR__ . '/test/' . 'OrganizationsTest' |
|
42 | + __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__, |
|
43 | + 'OrganizationsTest' => __DIR__.'/test/'.'OrganizationsTest' |
|
44 | 44 | ), |
45 | 45 | ), |
46 | 46 | ); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function setHouseNumber($houseNumber = "") |
73 | 73 | { |
74 | - $this->houseNumber=$houseNumber; |
|
74 | + $this->houseNumber = $houseNumber; |
|
75 | 75 | return $this; |
76 | 76 | } |
77 | 77 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public function setStreet($street = "") |
139 | 139 | { |
140 | - $this->street=$street; |
|
140 | + $this->street = $street; |
|
141 | 141 | return $this; |
142 | 142 | } |
143 | 143 | |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function setPhone($phone = "") |
162 | 162 | { |
163 | - $this->phone=$phone; |
|
163 | + $this->phone = $phone; |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | */ |
183 | 183 | public function setFax($fax = "") |
184 | 184 | { |
185 | - $this->fax=$fax; |
|
185 | + $this->fax = $fax; |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |