Completed
Push — develop ( 60c2a6...7c4b2f )
by Carsten
61:42 queued 47:32
created
module/Jobs/src/Jobs/Factory/Controller/ApprovalControllerFactory.php 1 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.