Completed
Push — develop ( e4c992...b72595 )
by
unknown
06:34
created
module/Jobs/src/Jobs/View/Helper/ApplyUrl.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,10 +123,10 @@
 block discarded – undo
123 123
      * @param $options
124 124
      */
125 125
     public function setOptions($options){
126
-       foreach($options as $key=>$val) {
126
+        foreach($options as $key=>$val) {
127 127
             if (array_key_exists($this->options,$key)) {
128 128
                 $this->options[$key]=$val;
129 129
             }
130
-       }
130
+        }
131 131
     }
132 132
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
     public function __invoke(Job $jobEntity, $options = [])
79 79
     {
80
-        $options= array_merge($this->options, $options);
80
+        $options = array_merge($this->options, $options);
81 81
 
82 82
         $ats = $jobEntity->getAtsMode();
83 83
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
         if ($ats->isIntern() || $ats->isEmail()) {
93 93
 
94
-            $query = [ 'subscriberUri' => $serverUrlHelper(array()) . '/subscriber/' . 1 ];
94
+            $query = ['subscriberUri' => $serverUrlHelper(array()).'/subscriber/'.1];
95 95
             $route = 'lang/apply';
96 96
             $params = [
97 97
                 'applyId' => $jobEntity->getApplyId(),
@@ -106,12 +106,12 @@  discard block
 block discarded – undo
106 106
             $url = $ats->getUri();
107 107
         }
108 108
 
109
-        if($options['linkOnly']){
110
-            $result=$url;
111
-            if($options['absolute']) {
109
+        if ($options['linkOnly']) {
110
+            $result = $url;
111
+            if ($options['absolute']) {
112 112
                 $result = $serverUrlHelper($url);
113 113
             }
114
-        }else{
114
+        } else {
115 115
             $translate = $this->translateHelper;
116 116
             $result = sprintf('<a href="%s" rel="nofollow">%s</a>', $url, $translate('Apply'));
117 117
         }
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
     /**
123 123
      * @param $options
124 124
      */
125
-    public function setOptions($options){
126
-       foreach($options as $key=>$val) {
127
-            if (array_key_exists($this->options,$key)) {
128
-                $this->options[$key]=$val;
125
+    public function setOptions($options) {
126
+       foreach ($options as $key=>$val) {
127
+            if (array_key_exists($this->options, $key)) {
128
+                $this->options[$key] = $val;
129 129
             }
130 130
        }
131 131
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
             if ($this->value['params']['status'] != 'all'){
63 63
                 $queryBuilder->field('status.name')->equals($this->value['params']['status']);
64 64
             }
65
-        }else{
65
+        } else{
66 66
             $queryBuilder->field('status.name')->equals(Status::CREATED);
67 67
         }
68 68
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/View/Helper/JobUrl.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,10 +102,10 @@
 block discarded – undo
102 102
             }
103 103
         }else{
104 104
             $result = sprintf('<a href="%s" rel="%s" %s>%s</a>',
105
-                              $url,
106
-                              $options['rel'],
107
-                              $options['target']?"target=" . $options['target']:"",
108
-                              strip_tags($jobEntity->getTitle()));
105
+                                $url,
106
+                                $options['rel'],
107
+                                $options['target']?"target=" . $options['target']:"",
108
+                                strip_tags($jobEntity->getTitle()));
109 109
         }
110 110
 
111 111
         return $result;
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     public function __invoke(Job $jobEntity, $options = [])
61 61
     {
62 62
 
63
-        $options= array_merge($this->options, $options);
63
+        $options = array_merge($this->options, $options);
64 64
         $paramsHelper = $this->paramsHelper;
65 65
         $urlHelper = $this->urlHelper;
66 66
         $serverUrlHelper = $this->serverUrlHelper;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         if (!empty($jobEntity->getLink())) {
70 70
             $url = $jobEntity->getLink();
71 71
             $isExternalLink = true;
72
-        }elseif($options['showPendingJobs']) {
72
+        }elseif ($options['showPendingJobs']) {
73 73
             $url = $urlHelper(
74 74
                 'lang/jobs/approval',
75 75
                 [],
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
                     ]
80 80
                 ], true);
81 81
 
82
-        }else{
82
+        } else {
83 83
 
84 84
             $query = [
85
-                'subscriberUri' => $serverUrlHelper([]) . '/subscriber/' . 1,
85
+                'subscriberUri' => $serverUrlHelper([]).'/subscriber/'.1,
86 86
                 'id' => $jobEntity->getId()
87 87
             ];
88 88
             $route = 'lang/jobs/view';
@@ -95,16 +95,16 @@  discard block
 block discarded – undo
95 95
             $url = $urlHelper($route, $params, array('query' => $query));
96 96
         }
97 97
 
98
-        if ($options['linkOnly']){
98
+        if ($options['linkOnly']) {
99 99
             $result = $url;
100
-            if ($options['absolute'] && !$isExternalLink){
100
+            if ($options['absolute'] && !$isExternalLink) {
101 101
                 $result = $serverUrlHelper($url);
102 102
             }
103
-        }else{
103
+        } else {
104 104
             $result = sprintf('<a href="%s" rel="%s" %s>%s</a>',
105 105
                               $url,
106 106
                               $options['rel'],
107
-                              $options['target']?"target=" . $options['target']:"",
107
+                              $options['target'] ? "target=".$options['target'] : "",
108 108
                               strip_tags($jobEntity->getTitle()));
109 109
         }
110 110
 
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * @param $options
116 116
      */
117
-    public function setOptions($options){
118
-        foreach($options as $key=>$val) {
119
-            if (array_key_exists($this->options,$key)) {
120
-                $this->options[$key]=$val;
117
+    public function setOptions($options) {
118
+        foreach ($options as $key=>$val) {
119
+            if (array_key_exists($this->options, $key)) {
120
+                $this->options[$key] = $val;
121 121
             }
122 122
         }
123 123
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         if (!empty($jobEntity->getLink())) {
70 70
             $url = $jobEntity->getLink();
71 71
             $isExternalLink = true;
72
-        }elseif($options['showPendingJobs']) {
72
+        } elseif($options['showPendingJobs']) {
73 73
             $url = $urlHelper(
74 74
                 'lang/jobs/approval',
75 75
                 [],
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
                     ]
80 80
                 ], true);
81 81
 
82
-        }else{
82
+        } else{
83 83
 
84 84
             $query = [
85 85
                 'subscriberUri' => $serverUrlHelper([]) . '/subscriber/' . 1,
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             if ($options['absolute'] && !$isExternalLink){
101 101
                 $result = $serverUrlHelper($url);
102 102
             }
103
-        }else{
103
+        } else{
104 104
             $result = sprintf('<a href="%s" rel="%s" %s>%s</a>',
105 105
                               $url,
106 106
                               $options['rel'],
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Controller/TemplateController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function viewAction()
57 57
     {
58 58
         $id = $this->params()->fromQuery('id');
59
-        $channel = $this->params()->fromRoute('channel','default');
59
+        $channel = $this->params()->fromRoute('channel', 'default');
60 60
         $response = $this->getResponse();
61 61
         /* @var \Jobs\Entity\Job $job */
62 62
         $job = $this->jobRepository->find($id);
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             $this->auth()->isAdmin()
84 84
         ) {
85 85
             $applicationViewModel->setTemplate('iframe/iFrameInjection');
86
-        }elseif(Status::EXPIRED == $job->getStatus() or  Status::INACTIVE == $job->getStatus()) {
86
+        }elseif (Status::EXPIRED == $job->getStatus() or Status::INACTIVE == $job->getStatus()) {
87 87
             $response->setStatusCode(Response::STATUS_CODE_410);
88 88
             $model->setTemplate('jobs/error/expired');
89 89
             $model->setVariables(
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     protected function editTemplateAction()
112 112
     {
113 113
         $id = $this->params('id');
114
-        $formIdentifier=$this->params()->fromQuery('form');
114
+        $formIdentifier = $this->params()->fromQuery('form');
115 115
         $job = $this->jobRepository->find($id);
116 116
         $this->acl($job, 'edit');
117 117
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 
143 143
             $instanceForm = $formTemplate->get($formIdentifier);
144 144
             if (!isset($instanceForm)) {
145
-                throw new \RuntimeException('No form found for "' . $formIdentifier . '"');
145
+                throw new \RuntimeException('No form found for "'.$formIdentifier.'"');
146 146
             }
147 147
 
148 148
             // the id is part of the postData, but it never should be altered
Please login to merge, or discard this patch.