Completed
Push — develop ( 60c2a6...7c4b2f )
by Carsten
61:42 queued 47:32
created
module/Jobs/src/Jobs/Controller/IndexController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * List jobs.
78 78
      *
79
-     * @return array
79
+     * @return ViewModel
80 80
      */
81 81
     public function indexAction()
82 82
     {
@@ -84,7 +84,6 @@  discard block
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @param bool $showPendingJobs
88 87
      *
89 88
      * @return ViewModel
90 89
      */
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Controller/ApprovalControllerFactory.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- *
5
- * @filesource
6
- * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
7
- * @license       MIT
8
- */
3
+     * YAWIK
4
+     *
5
+     * @filesource
6
+     * @copyright (c) 2013-2015 Cross Solution (http://cross-solution.de)
7
+     * @license       MIT
8
+     */
9 9
 
10 10
 namespace Jobs\Factory\Controller;
11 11
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             ->get('Jobs/ListFilter', [ 'fieldset' => 'Jobs/ListFilterAdminFieldset' ]);
35 35
 
36 36
         /* @var $user \Auth\Entity\User */
37
-         $user = $service->get('AuthenticationService')->getUser();
37
+            $user = $service->get('AuthenticationService')->getUser();
38 38
 
39 39
         /* @var $jobRepository Repository\Job */
40 40
         $jobRepository = $service->get('repositories')->get('Jobs/Job');
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $service = $serviceLocator->getServiceLocator();
32 32
 
33 33
         $searchForm = $service->get('forms')
34
-            ->get('Jobs/ListFilter', [ 'fieldset' => 'Jobs/ListFilterAdminFieldset' ]);
34
+            ->get('Jobs/ListFilter', ['fieldset' => 'Jobs/ListFilterAdminFieldset']);
35 35
 
36 36
         /* @var $user \Auth\Entity\User */
37 37
          $user = $service->get('AuthenticationService')->getUser();
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Controller/IndexControllerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $serviceLocator = $serviceLocator->getServiceLocator();
33 33
 
34 34
         $searchForm = $serviceLocator->get('forms')
35
-            ->get('Jobs/ListFilter', [ 'fieldset' => 'Jobs/ListFilterPersonalFieldset' ]);
35
+            ->get('Jobs/ListFilter', ['fieldset' => 'Jobs/ListFilterPersonalFieldset']);
36 36
 
37 37
         /**
38 38
          * @var $jobRepository Repository\Job
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/ListFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
      *
47 47
      * fieldset: string Servicename of the Fieldset class
48 48
      */
49
-    public function __construct($name, array $options=[])
49
+    public function __construct($name, array $options = [])
50 50
     {
51
-        $this->fieldset = array_key_exists('fieldset',$options)?$options['fieldset']:self::BASE_FIELDSET;
51
+        $this->fieldset = array_key_exists('fieldset', $options) ? $options['fieldset'] : self::BASE_FIELDSET;
52 52
         parent::__construct();
53 53
     }
54 54
 
Please login to merge, or discard this patch.