Passed
Push — master ( 0fbfd0...0a4722 )
by Carsten
11:27
created
module/Jobs/src/Controller/Plugin/InitializeJob.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 
44 44
     public function __construct(RepositoryService $repositoryService, AuthenticationService $auth, Acl $acl)
45 45
     {
46
-        $this->repositoryService=$repositoryService;
47
-        $this->auth=$auth;
48
-        $this->acl=$acl;
46
+        $this->repositoryService = $repositoryService;
47
+        $this->auth = $auth;
48
+        $this->acl = $acl;
49 49
     }
50 50
 
51 51
     public function __invoke()
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
     public function get(Params $params, $allowDraft = false, $getSnapshot = false)
65 65
     {
66 66
         /* @var \Jobs\Repository\Job $jobRepository */
67
-        $jobRepository  = $this->repositoryService->get('Jobs/Job');
67
+        $jobRepository = $this->repositoryService->get('Jobs/Job');
68 68
         $idFromRoute   = $params('id', 0);
69 69
         $idFromQuery   = $params->fromQuery('id', 0);
70 70
         $idFromSubForm = $params->fromPost('job', 0);
71 71
 
72
-        $id = empty($idFromRoute)? (empty($idFromQuery)?$idFromSubForm:$idFromQuery) : $idFromRoute;
72
+        $id = empty($idFromRoute) ? (empty($idFromQuery) ? $idFromSubForm : $idFromQuery) : $idFromRoute;
73 73
         $snapshotId = $params->fromPost('snapshot') ?: ($params->fromQuery('snapshot') ?: null);
74 74
 
75 75
         if (empty($id) && empty($snapshotId) && $allowDraft) {
Please login to merge, or discard this patch.
module/Jobs/src/Controller/ApiJobListByChannelController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
         $channel = $this->params()->fromRoute('channel', 'default');
33 33
 
34 34
         /* @var Paginator $paginator */
35
-        $paginator = $this->paginator('Jobs/Job', ['channel' => $channel ]);
35
+        $paginator = $this->paginator('Jobs/Job', ['channel' => $channel]);
36 36
 
37
-        $viewModel=new ViewModel();
37
+        $viewModel = new ViewModel();
38 38
         $viewModel->setVariables(
39 39
             [
40 40
                 'jobs' => $paginator,
Please login to merge, or discard this patch.
module/Jobs/src/Controller/TemplateController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $this->auth()->isAdmin()
105 105
         ) {
106 106
             $applicationViewModel->setTemplate('iframe/iFrameInjection');
107
-        } elseif (Status::EXPIRED == $job->getStatus() or  Status::INACTIVE == $job->getStatus()) {
107
+        } elseif (Status::EXPIRED == $job->getStatus() or Status::INACTIVE == $job->getStatus()) {
108 108
             $response->setStatusCode(Response::STATUS_CODE_410);
109 109
             $model->setTemplate('jobs/error/expired');
110 110
             $model->setVariables(
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     protected function editTemplateAction()
133 133
     {
134 134
         $id = $this->params('id');
135
-        $formIdentifier=$this->params()->fromQuery('form');
135
+        $formIdentifier = $this->params()->fromQuery('form');
136 136
         //$job = $this->jobRepository->find($id);
137 137
         $job = $this->initializeJob()->get($this->params(), true, true); /* @var \Jobs\Entity\Job $job */
138 138
         $this->acl($job, 'edit');
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
             $instanceForm = $formTemplate->get($formIdentifier);
166 166
             if (!isset($instanceForm)) {
167
-                throw new \RuntimeException('No form found for "' . $formIdentifier . '"');
167
+                throw new \RuntimeException('No form found for "'.$formIdentifier.'"');
168 168
             }
169 169
 
170 170
             // the id is part of the postData, but it never should be altered
Please login to merge, or discard this patch.
module/Cv/src/Options/ModuleOptions.php 1 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/Event/UpdateFilesPermissionsSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 {
25 25
     protected $targetDocument = Cv::class;
26 26
 
27
-    protected $filesProperties = [ 'attachments' ];
27
+    protected $filesProperties = ['attachments'];
28 28
 
29 29
     /**
30 30
      *
Please login to merge, or discard this patch.
module/Cv/src/Form/SearchForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
                  ],
67 67
                  'attributes' => [
68 68
                      'value' => '10', // default distance
69
-                     'data-searchbox' => -1,  // hide the search box
69
+                     'data-searchbox' => -1, // hide the search box
70 70
                      'data-allowclear' => 'false', // allow to clear a selected value
71 71
                      'data-placeholder' => /*@translate*/ 'Distance',
72 72
                      'data-width' => '100%',
Please login to merge, or discard this patch.
module/Cv/src/Form/InputFilter/Education.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $this->add([
28 28
             'name' => 'endDate',
29
-            'required' => ! $data['currentIndicator']
29
+            'required' => !$data['currentIndicator']
30 30
         ]);
31 31
         
32 32
         return parent::setData($data);
Please login to merge, or discard this patch.
module/Cv/src/Form/InputFilter/Employment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $this->add([
28 28
             'name' => 'endDate',
29
-            'required' => ! $data['currentIndicator']
29
+            'required' => !$data['currentIndicator']
30 30
         ]);
31 31
         
32 32
         return parent::setData($data);
Please login to merge, or discard this patch.
module/Cv/src/Form/PreferredJobFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     use EmptySummaryAwareTrait, HydratorStrategyAwareTrait, ViewPartialProviderTrait;
18 18
 
19
-    private $defaultEmptySummaryNotice =  /*@translate*/ 'Click here to enter your employment expectation';
19
+    private $defaultEmptySummaryNotice = /*@translate*/ 'Click here to enter your employment expectation';
20 20
     private $defaultPartial = 'cv/form/preferred-job-fieldset';
21 21
     
22 22
     /**
Please login to merge, or discard this patch.