Completed
Push — develop ( 911e58...200791 )
by Carsten
13s
created
module/Cv/src/Controller/ManageController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@
 block discarded – undo
173 173
         return $this->redirect()->refresh();
174 174
     }
175 175
 
176
+    /**
177
+     * @param \Cv\Repository\Cv $repository
178
+     */
176 179
     private function getCv($repository, $user)
177 180
     {
178 181
         $id =
Please login to merge, or discard this patch.
module/Cv/src/Options/ModuleOptions.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     /**
94 94
      * Gets the the maximum number of allowed attachments
95 95
      *
96
-     * @return string
96
+     * @return integer
97 97
      */
98 98
     public function getAttachmentsCount()
99 99
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      *
35 35
      * @var array $attachmentsMimeType
36 36
      */
37
-    protected $attachmentsMimeType = array('image','applications/pdf',
37
+    protected $attachmentsMimeType = array('image', 'applications/pdf',
38 38
         'application/x-pdf',
39 39
         'application/acrobat',
40 40
         'applications/vnd.pdf',
Please login to merge, or discard this patch.
module/Cv/src/Repository/Cv.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * Look for an drafted Document of a given user
23 23
      *
24 24
      * @param $user
25
-     * @return CvEntity|null
25
+     * @return \MongoCursor
26 26
      */
27 27
     public function findDraft($user)
28 28
     {
Please login to merge, or discard this patch.
module/Jobs/src/Controller/ManageController.php 3 patches
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -165,7 +165,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
604 603
     }
605 604
 
606 605
     /**
607
-     * @param $script
606
+     * @param string $script
608 607
      * @param array $parameter
609 608
      * @return ViewModel
610 609
      */
Please login to merge, or discard this patch.
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -66,16 +66,16 @@  discard block
 block discarded – undo
66 66
      */
67 67
     protected $translator;
68 68
 	
69
-	/**
70
-	 * @var FilterPluginManager
71
-	 */
69
+    /**
70
+     * @var FilterPluginManager
71
+     */
72 72
     protected $filterManager;
73 73
     
74 74
     protected $jobFormEvents;
75 75
 	
76
-	/**
77
-	 * @var
78
-	 */
76
+    /**
77
+     * @var
78
+     */
79 79
     protected $formManager;
80 80
     
81 81
     protected $options;
@@ -88,35 +88,35 @@  discard block
 block discarded – undo
88 88
     
89 89
     protected $jobEvent;
90 90
 	
91
-	/**
92
-	 * ManageController constructor.
93
-	 *
94
-	 * @TODO: [ZF3] make this controller more thin, looks like so much things to do
95
-	 *
96
-	 * @param AuthenticationService $auth
97
-	 * @param RepositoryService $repositoryService
98
-	 * @param TranslatorInterface $translator
99
-	 * @param FilterPluginManager $filterManager
100
-	 * @param EventManagerInterface $jobFormEvents
101
-	 * @param $formManager
102
-	 * @param $options
103
-	 * @param HelperPluginManager $viewHelper
104
-	 * @param ValidatorPluginManager $validatorManager
105
-	 * @param EventManagerInterface $jobEvents
106
-	 * @param EventInterface $jobEvent
107
-	 */
91
+    /**
92
+     * ManageController constructor.
93
+     *
94
+     * @TODO: [ZF3] make this controller more thin, looks like so much things to do
95
+     *
96
+     * @param AuthenticationService $auth
97
+     * @param RepositoryService $repositoryService
98
+     * @param TranslatorInterface $translator
99
+     * @param FilterPluginManager $filterManager
100
+     * @param EventManagerInterface $jobFormEvents
101
+     * @param $formManager
102
+     * @param $options
103
+     * @param HelperPluginManager $viewHelper
104
+     * @param ValidatorPluginManager $validatorManager
105
+     * @param EventManagerInterface $jobEvents
106
+     * @param EventInterface $jobEvent
107
+     */
108 108
     public function __construct(
109
-    	AuthenticationService $auth,
110
-	    RepositoryService $repositoryService,
111
-	    TranslatorInterface $translator,
112
-		FilterPluginManager $filterManager,
113
-		EventManagerInterface $jobFormEvents,
114
-		$formManager,
115
-		$options,
116
-		HelperPluginManager $viewHelper,
117
-		ValidatorPluginManager $validatorManager,
118
-		EventManagerInterface $jobEvents,
119
-		EventInterface $jobEvent
109
+        AuthenticationService $auth,
110
+        RepositoryService $repositoryService,
111
+        TranslatorInterface $translator,
112
+        FilterPluginManager $filterManager,
113
+        EventManagerInterface $jobFormEvents,
114
+        $formManager,
115
+        $options,
116
+        HelperPluginManager $viewHelper,
117
+        ValidatorPluginManager $validatorManager,
118
+        EventManagerInterface $jobEvents,
119
+        EventInterface $jobEvent
120 120
     )
121 121
     {
122 122
         $this->auth = $auth;
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
         }
158 158
         $routeMatch = $e->getRouteMatch();
159 159
         $action = $routeMatch->getParam('action');
160
-	    $services = $e->getApplication()->getServiceManager();
160
+        $services = $e->getApplication()->getServiceManager();
161 161
         if (in_array($action, array('edit', 'approval', 'completion'))) {
162 162
             $jobEvents = $services->get('Jobs/Events');
163 163
             $mailSender = $services->get('Jobs/Listener/MailSender');
@@ -202,12 +202,12 @@  discard block
 block discarded – undo
202 202
         $jobEntity = $this->initializeJob()->get($this->params(), true);
203 203
 
204 204
         $model = new ViewModel([
205
-                                   'portals' => $jobEntity->getPortals(),
206
-                                   'channels' => $channels,
207
-                                   'defaultCurrencyCode' => $options->defaultCurrencyCode,
208
-                                   'defaultTaxRate' =>  $options->defaultTaxRate,
209
-                                   'jobId' => $jobEntity->getId()
210
-                               ]);
205
+                                    'portals' => $jobEntity->getPortals(),
206
+                                    'channels' => $channels,
207
+                                    'defaultCurrencyCode' => $options->defaultCurrencyCode,
208
+                                    'defaultTaxRate' =>  $options->defaultTaxRate,
209
+                                    'jobId' => $jobEntity->getId()
210
+                                ]);
211 211
         $model->setTemplate('jobs/partials/channel-list')->setTerminal(true);
212 212
         return $model;
213 213
     }
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
      */
226 226
     protected function save()
227 227
     {
228
-		$formEvents = $this->jobFormEvents;
228
+        $formEvents = $this->jobFormEvents;
229 229
         $user               = $this->auth->getUser();
230 230
         if (empty($user->getInfo()->getEmail())) {
231 231
             return $this->getErrorViewModel('no-parent', array('cause' => 'noEmail'));
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
             'lang/jobs/view',
585 585
             array(),
586 586
             array('query' => $query
587
-                      )
587
+                        )
588 588
         );
589 589
 
590 590
         $approvalLink = $this->url()->fromRoute(
@@ -600,10 +600,10 @@  discard block
 block discarded – undo
600 600
         );
601 601
 
602 602
         return array('job' => $jobEntity,
603
-                     'diffSnapshot' => $diff,
604
-                     'viewLink' => $viewLink,
605
-                     'approvalLink' => $approvalLink,
606
-                     'declineLink' => $declineLink);
603
+                        'diffSnapshot' => $diff,
604
+                        'viewLink' => $viewLink,
605
+                        'approvalLink' => $approvalLink,
606
+                        'declineLink' => $declineLink);
607 607
     }
608 608
 
609 609
     /**
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -227,11 +227,11 @@  discard block
 block discarded – undo
227 227
     protected function save()
228 228
     {
229 229
 		$formEvents = $this->jobFormEvents;
230
-        $user               = $this->auth->getUser();
230
+        $user = $this->auth->getUser();
231 231
         if (empty($user->getInfo()->getEmail())) {
232 232
             return $this->getErrorViewModel('no-parent', array('cause' => 'noEmail'));
233 233
         }
234
-        $userOrg            = $user->getOrganization();
234
+        $userOrg = $user->getOrganization();
235 235
         if (!$userOrg->hasAssociation() || $userOrg->getOrganization()->isDraft()) {
236 236
             return $this->getErrorViewModel('no-parent', array('cause' => 'noCompany'));
237 237
         }
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
         }
262 262
 
263 263
 
264
-        $viewModel          = null;
264
+        $viewModel = null;
265 265
         $this->acl($jobEntity, 'edit');
266 266
         if ($status = $params->fromQuery('status')) {
267 267
             $this->changeStatus($jobEntity, $status);
@@ -273,11 +273,11 @@  discard block
 block discarded – undo
273 273
         $instanceForm       = null;
274 274
         $formErrorMessages = array();
275 275
 
276
-        if (isset($formIdentifier) &&  $request->isPost()) {
276
+        if (isset($formIdentifier) && $request->isPost()) {
277 277
             // at this point the form get instantiated and immediately accumulated
278 278
             $instanceForm = $form->getForm($formIdentifier);
279 279
             if (!isset($instanceForm)) {
280
-                throw new \RuntimeException('No form found for "' . $formIdentifier . '"');
280
+                throw new \RuntimeException('No form found for "'.$formIdentifier.'"');
281 281
             }
282 282
             // the id may be part of the postData, but it never should be altered
283 283
             $postData = $request->getPost();
@@ -331,20 +331,20 @@  discard block
 block discarded – undo
331 331
             $jobValid = false;
332 332
             $errorMessage[] = $this->translator->translate('Accept the Terms');
333 333
         }
334
-        $result = $formEvents->trigger('ValidateJob', $this, [ 'form' => $form ]);
334
+        $result = $formEvents->trigger('ValidateJob', $this, ['form' => $form]);
335 335
         foreach ($result as $messages) {
336 336
             if (!$messages) {
337 337
                 continue;
338 338
             }
339 339
             if (!is_array($messages)) {
340
-                $messages = [ $messages ];
340
+                $messages = [$messages];
341 341
             }
342 342
 
343 343
             $errorMessage = array_merge($errorMessage, $messages);
344 344
             $jobValid = false;
345 345
         }
346 346
 
347
-        $errorMessage = '<br />' . implode('<br />', $errorMessage);
347
+        $errorMessage = '<br />'.implode('<br />', $errorMessage);
348 348
         if ($isAjax) {
349 349
             if ($instanceForm instanceof SummaryForm) {
350 350
                 $instanceForm->setRenderMode(SummaryForm::RENDER_SUMMARY);
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
             } else {
353 353
                 $viewHelper = 'form';
354 354
             }
355
-            $viewHelperManager  = $this->viewHelper;
355
+            $viewHelperManager = $this->viewHelper;
356 356
             $content = $viewHelperManager->get($viewHelper)->__invoke($instanceForm);
357 357
             $viewModel = new JsonModel(
358 358
                 array(
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
                     }
377 377
                 }
378 378
             } else {
379
-                $formEvents->trigger('DisableElements', $this, [ 'form' => $form, 'job'=>$jobEntity ]);
379
+                $formEvents->trigger('DisableElements', $this, ['form' => $form, 'job'=>$jobEntity]);
380 380
                 // Job is deployed, some changes are now disabled
381 381
                 $form->enableAll();
382 382
             }
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 
385 385
             $completionLink = $this->url()->fromRoute(
386 386
                 'lang/jobs/completion',
387
-                [ 'id' => $jobEntity->getId()]
387
+                ['id' => $jobEntity->getId()]
388 388
             );
389 389
 
390 390
             $viewModel = $this->getViewModel($form);
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
     protected function getFormular($job)
451 451
     {
452 452
         /* @var $forms \Zend\Form\FormElementManager\FormElementManagerV3Polyfill */
453
-        $forms    = $this->formManager;
453
+        $forms = $this->formManager;
454 454
         /* @var $container \Jobs\Form\Job */
455 455
 
456 456
         $container = $forms->get(
@@ -552,15 +552,15 @@  discard block
 block discarded – undo
552 552
         $jobEvent->setJobEntity($jobEntity);
553 553
         $jobEvent->addPortal('XingVendorApi');
554 554
         $jobEvent->setTarget($this);
555
-        $jobEvents      = $this->jobEvents;
555
+        $jobEvents = $this->jobEvents;
556 556
         // array with differences between the last snapshot and the actual entity
557 557
         // is remains Null if there is no snapshot
558 558
         // it will be an empty array if the snapshot and the actual entity do not differ
559
-        $diff           = null;
559
+        $diff = null;
560 560
 
561 561
 
562 562
         if ($params == 'declined') {
563
-            if ($jobEntity instanceOf JobSnapshot)  {
563
+            if ($jobEntity instanceOf JobSnapshot) {
564 564
                 $jobEntity->getOriginalEntity()->changeStatus(
565 565
                     Status::ACTIVE,
566 566
                     sprintf(
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
      */
639 639
     public function deactivateAction()
640 640
     {
641
-        $user           = $this->auth->getUser();
641
+        $user = $this->auth->getUser();
642 642
 
643 643
         $jobEntity = $this->initializeJob()->get($this->params());
644 644
 
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Decorator/JsonLdProvider.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -82,6 +82,7 @@
 block discarded – undo
82 82
      * Generates a location array
83 83
      *
84 84
      * @param Collection $locations,
85
+     * @param string $locations
85 86
      *
86 87
      * @return array
87 88
      */
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $dateEnd->add(new \DateInterval("P180D"));
59 59
             $dateEnd = $dateEnd->format('Y-m-d H:i:s');
60 60
         }
61
-        $array=[
61
+        $array = [
62 62
             '@context'=>'http://schema.org/',
63 63
             '@type' => 'JobPosting',
64 64
             'title' => $this->job->getTitle(),
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     private function getLocations($locations)
95 95
     {
96
-        $array=[];
96
+        $array = [];
97 97
         foreach ($locations as $location) { /* @var \Core\Entity\LocationInterface $location */
98 98
             array_push(
99 99
                 $array,
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                     '@type' => 'Place',
102 102
                     'address' => [
103 103
                         '@type' => 'PostalAddress',
104
-                        'streetAddress' => $location->getStreetname() .' '.$location->getStreetnumber(),
104
+                        'streetAddress' => $location->getStreetname().' '.$location->getStreetnumber(),
105 105
                         'postalCode' => $location->getPostalCode(),
106 106
                         'addressLocality' => $location->getCity(),
107 107
                         'addressCountry' => $location->getCountry(),
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     private function getDescription(TemplateValuesInterface $values)
124 124
     {
125
-        $description=sprintf(
125
+        $description = sprintf(
126 126
             "<p>%s</p>".
127 127
             "<h1>%s</h1>".
128 128
             "<h3>Requirements</h3><p>%s</p>".
Please login to merge, or discard this patch.
module/Jobs/src/Entity/History.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
      */
42 42
     protected $message;
43 43
     
44
+    /**
45
+     * @param StatusInterface|null $status
46
+     */
44 47
     public function __construct($status, $message = '[System]')
45 48
     {
46 49
         if (!$status instanceof StatusInterface) {
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Job.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -536,7 +536,7 @@
 block discarded – undo
536 536
 
537 537
     /**
538 538
      * Gets the number of unread applications
539
-     * @return Collection
539
+     * @return integer
540 540
      */
541 541
     public function getUnreadApplications()
542 542
     {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -428,9 +428,9 @@
 block discarded – undo
428 428
     }
429 429
     
430 430
     /**
431
-    * (non-PHPdoc)
432
-    * @see \Jobs\Entity\JobInterface::getOrganization()
433
-    */
431
+     * (non-PHPdoc)
432
+     * @see \Jobs\Entity\JobInterface::getOrganization()
433
+     */
434 434
     public function getOrganization()
435 435
     {
436 436
         return $this->organization;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -514,10 +514,10 @@  discard block
 block discarded – undo
514 514
     public function getLocation()
515 515
     {
516 516
         if (null === $this->location) {
517
-            $array=[];
517
+            $array = [];
518 518
             if (null != $this->locations) {
519 519
                 foreach ($this->locations as $location) { /* @var \Core\Entity\LocationInterface $location */
520
-                    $array[]=(string) $location;
520
+                    $array[] = (string) $location;
521 521
                 }
522 522
                 return implode(', ', $array);
523 523
             }
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
             if ($removePermissions) {
573 573
                 $this->getPermissions()->revoke($this->user, Permissions::PERMISSION_ALL);
574 574
             }
575
-            $this->user=null;
575
+            $this->user = null;
576 576
         }
577 577
 
578 578
         return $this;
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
         $organization = $this->organization;
834 834
         if (is_object($organization) && $organization->getImage()) {
835 835
             $organizationImage = $organization->getImage();
836
-            return "/file/Organizations.OrganizationImage/" . $organizationImage->getId();
836
+            return "/file/Organizations.OrganizationImage/".$organizationImage->getId();
837 837
         }
838 838
         return $this->logoRef;
839 839
     }
Please login to merge, or discard this patch.
module/Jobs/src/Entity/JobInterface.php 2 patches
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
      * Gets the unique key used by applications to reference a job posting
39 39
      *
40 40
      * @param string $applyId
41
+     * @return JobInterface|null
41 42
      */
42 43
     public function setApplyId($applyId);
43 44
 
@@ -93,6 +94,7 @@  discard block
 block discarded – undo
93 94
      * Sets an URI for a job posting
94 95
      *
95 96
      * @param string $link
97
+     * @return Job
96 98
      */
97 99
     public function setLink($link);
98 100
     
@@ -139,6 +141,7 @@  discard block
 block discarded – undo
139 141
      * Sets the title of a job posting
140 142
      *
141 143
      * @param string $title
144
+     * @return JobInterface
142 145
      */
143 146
     public function setTitle($title);
144 147
 
@@ -240,6 +243,7 @@  discard block
 block discarded – undo
240 243
      * Sets the language of a job posting
241 244
      *
242 245
      * @param string $language
246
+     * @return Job
243 247
      */
244 248
     public function setLanguage($language);
245 249
 
@@ -255,6 +259,7 @@  discard block
 block discarded – undo
255 259
      * Sets the location of a job posting
256 260
      *
257 261
      * @param string $location
262
+     * @return Job
258 263
      */
259 264
     public function setLocation($location);
260 265
 
@@ -269,6 +274,7 @@  discard block
 block discarded – undo
269 274
      * Sets locations of a job posting
270 275
      *
271 276
      * @param string $locations
277
+     * @return Job
272 278
      */
273 279
     public function setLocations($locations);
274 280
 
@@ -283,6 +289,7 @@  discard block
 block discarded – undo
283 289
      * Sets applications for a job posting
284 290
      *
285 291
      * @param Collection $applications
292
+     * @return Job|null
286 293
      */
287 294
     public function setApplications(Collection $applications);
288 295
     
@@ -297,6 +304,7 @@  discard block
 block discarded – undo
297 304
      * Sets Status of a job posting
298 305
      *
299 306
      * @param string $status
307
+     * @return void
300 308
      */
301 309
     public function setStatus($status);
302 310
 
@@ -342,6 +350,7 @@  discard block
 block discarded – undo
342 350
      * organisation offering the job.
343 351
      *
344 352
      * @param string $reference
353
+     * @return Job
345 354
      */
346 355
     public function setReference($reference);
347 356
     
@@ -357,6 +366,7 @@  discard block
 block discarded – undo
357 366
      * Sets the list of channels where a job opening should be published
358 367
      *
359 368
      * @param Array $portals
369
+     * @return Job|null
360 370
      */
361 371
     public function setPortals(array $portals);
362 372
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
      *
199 199
      * @return UserInterface $user
200 200
      */
201
-    public function getUser() ;
201
+    public function getUser();
202 202
 
203 203
     /**
204 204
      * Gets the link to the application form
Please login to merge, or discard this patch.
module/Jobs/src/Factory/Form/MultipostingSelectFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * @param  string             $requestedName
31 31
      * @param  null|array         $options
32 32
      *
33
-     * @return object
33
+     * @return MultipostingSelect
34 34
      * @throws ServiceNotFoundException if unable to resolve the service.
35 35
      * @throws ServiceNotCreatedException if an exception is raised when
36 36
      *     creating a service.
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $router = $container->get('Router');
47 47
         $select  = new MultipostingSelect();
48 48
         $helpers = $container->get('ViewHelperManager');
49
-        $currencyFormat  = $helpers->get('currencyFormat');
49
+        $currencyFormat = $helpers->get('currencyFormat');
50 50
 
51 51
         $channels = $container->get('Jobs/Options/Provider');
52 52
 
@@ -67,11 +67,11 @@  discard block
 block discarded – undo
67 67
 
68 68
             $link = $router->assemble($channel->getParams(), array('name' => $channel->getRoute()));
69 69
             $groups[$category]['options'][$channel->getKey()] =
70
-                $channel->getLabel() . '|'
71
-                . $channel->getHeadLine() . '|'
72
-                . $channel->getDescription() . '|'
73
-                . $channel->getLinkText() . '|'
74
-                . $link . '|' . $channel->getPublishDuration() . '|'
70
+                $channel->getLabel().'|'
71
+                . $channel->getHeadLine().'|'
72
+                . $channel->getDescription().'|'
73
+                . $channel->getLinkText().'|'
74
+                . $link.'|'.$channel->getPublishDuration().'|'
75 75
                 . $channel->getLogo();
76 76
         }
77 77
 
Please login to merge, or discard this patch.