Completed
Push — develop ( f65419...2fe783 )
by
unknown
06:34
created
module/Jobs/src/Jobs/Form/BaseFieldset.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @param $locationEngineType
54
+     * @param string $locationEngineType
55 55
      */
56 56
     public function setLocationEngineType($locationEngineType)
57 57
     {
Please login to merge, or discard this patch.
module/Geo/src/Geo/Form/GeoSelectSimple.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 if (0 === strpos($value, '{')) {
63 63
                     return $value;
64 64
                 }
65
-                if ($value){
65
+                if ($value) {
66 66
                     foreach ($this->getValueOptions() as $optValue => $opt) {
67 67
                         if (false !== strpos($value, $opt)) {
68 68
                             return $optValue;
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             },
76 76
 
77 77
             /* hydrate */
78
-            function ($value) {
78
+            function($value) {
79 79
                 if (empty($value) || 0 !== strpos($value, '{')) {
80 80
                     return null;
81 81
                 }
Please login to merge, or discard this patch.
module/Jobs/config/module.config.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
                  * for multiple paths.
16 16
                  * example https://github.com/doctrine/DoctrineORMModule
17 17
                  */
18
-                'paths' => array( __DIR__ . '/../src/Jobs/Entity'),
18
+                'paths' => array(__DIR__.'/../src/Jobs/Entity'),
19 19
             ),
20 20
         ),
21 21
         'eventmanager' => array(
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
     ),
29 29
 
30 30
     'options' => [
31
-        'Jobs/JobboardSearchOptions' => [ 'class' => '\Jobs\Options\JobboardSearchOptions' ],
32
-        'Jobs/BaseFieldsetOptions' => [ 'class' => '\Jobs\Options\BaseFieldsetOptions' ],
31
+        'Jobs/JobboardSearchOptions' => ['class' => '\Jobs\Options\JobboardSearchOptions'],
32
+        'Jobs/BaseFieldsetOptions' => ['class' => '\Jobs\Options\BaseFieldsetOptions'],
33 33
     ],
34 34
 
35 35
     'Jobs' => array(
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             'translation_file_patterns' => array(
52 52
                     array(
53 53
                             'type'     => 'gettext',
54
-                            'base_dir' => __DIR__ . '/../language',
54
+                            'base_dir' => __DIR__.'/../language',
55 55
                             'pattern'  => '%s.mo',
56 56
                     ),
57 57
             ),
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                     'Jobboard',
92 92
                     'Jobs/Jobboard',
93 93
                     'Jobs/ApiJobListByChannel',
94
-                    'Jobs/Template' => [ 'view', 'edittemplate' ],
94
+                    'Jobs/Template' => ['view', 'edittemplate'],
95 95
                     'Jobs/Manage' => array(
96 96
                         'template',
97 97
                     ),
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     ),
229 229
 
230 230
     'event_manager' => [
231
-        'Core/AdminController/Events' => [ 'listeners' => [
231
+        'Core/AdminController/Events' => ['listeners' => [
232 232
             'Jobs/Listener/AdminWidgetProvider' => \Core\Controller\AdminControllerEvent::EVENT_DASHBOARD,
233 233
         ]],
234 234
 
@@ -290,40 +290,40 @@  discard block
 block discarded – undo
290 290
     'view_manager' => array(
291 291
         // Map template to files. Speeds up the lookup through the template stack.
292 292
         'template_map' => array(
293
-            'jobs/form/list-filter' => __DIR__ . '/../view/form/list-filter.phtml',
294
-            'jobs/form/apply-identifier' => __DIR__ . '/../view/form/apply-identifier.phtml',
295
-            'jobs/form/hiring-organization-select' => __DIR__ . '/../view/form/hiring-organization-select.phtml',
296
-            'jobs/form/multiposting-select' => __DIR__ . '/../view/form/multiposting-select.phtml',
297
-            'jobs/form/multiposting-checkboxes' => __DIR__ . '/../view/form/multiposting-checkboxes.phtml',
298
-            'jobs/form/ats-mode.view' => __DIR__ . '/../view/form/ats-mode.view.phtml',
299
-            'jobs/form/ats-mode.form' => __DIR__ . '/../view/form/ats-mode.form.phtml',
300
-            'jobs/form/preview' => __DIR__ . '/../view/form/preview.phtml',
301
-            'jobs/form/customer-note' => __DIR__ . '/../view/form/customer-note.phtml',
302
-            'jobs/partials/channel-list' => __DIR__ . '/../view/partials/channel-list.phtml',
303
-            'jobs/assign-user' => __DIR__ . '/../view/jobs/manage/assign-user.phtml',
304
-            'jobs/snapshot_or_preview' => __DIR__ . '/../view/partials/snapshot_or_preview.phtml',
305
-            'jobs/history' => __DIR__ . '/../view/partials/history.phtml',
306
-            'jobs/portalsummary' => __DIR__ . '/../view/partials/portalsummary.phtml',
307
-            'content/jobs-publish-on-yawik' => __DIR__ . '/../view/modals/yawik.phtml',
308
-            'content/jobs-publish-on-jobsintown' => __DIR__ . '/../view/modals/jobsintown.phtml',
309
-            'content/jobs-publish-on-homepage' => __DIR__ . '/../view/modals/homepage.phtml',
310
-            'content/jobs-publish-on-fazjob' => __DIR__ . '/../view/modals/fazjob.phtml',
311
-            'content/jobs-terms-and-conditions' => __DIR__ . '/../view/jobs/index/terms.phtml',
312
-            'mail/job-created' => __DIR__ . '/../view/mails/job-created.phtml',
313
-            'mail/job-pending' => __DIR__ . '/../view/mails/job-pending.phtml',
314
-            'mail/job-accepted' => __DIR__ . '/../view/mails/job-accepted.phtml',
315
-            'mail/job-rejected' => __DIR__ . '/../view/mails/job-rejected.phtml',
316
-            'mail/job-created.en' => __DIR__ . '/../view/mails/job-created.en.phtml',
317
-            'mail/job-pending.en' => __DIR__ . '/../view/mails/job-pending.en.phtml',
318
-            'mail/job-accepted.en' => __DIR__ . '/../view/mails/job-accepted.en.phtml',
319
-            'mail/job-rejected.en' => __DIR__ . '/../view/mails/job-rejected.en.phtml',
320
-            'jobs/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
321
-            'jobs/error/expired' => __DIR__ . '/../view/error/expired.phtml',
293
+            'jobs/form/list-filter' => __DIR__.'/../view/form/list-filter.phtml',
294
+            'jobs/form/apply-identifier' => __DIR__.'/../view/form/apply-identifier.phtml',
295
+            'jobs/form/hiring-organization-select' => __DIR__.'/../view/form/hiring-organization-select.phtml',
296
+            'jobs/form/multiposting-select' => __DIR__.'/../view/form/multiposting-select.phtml',
297
+            'jobs/form/multiposting-checkboxes' => __DIR__.'/../view/form/multiposting-checkboxes.phtml',
298
+            'jobs/form/ats-mode.view' => __DIR__.'/../view/form/ats-mode.view.phtml',
299
+            'jobs/form/ats-mode.form' => __DIR__.'/../view/form/ats-mode.form.phtml',
300
+            'jobs/form/preview' => __DIR__.'/../view/form/preview.phtml',
301
+            'jobs/form/customer-note' => __DIR__.'/../view/form/customer-note.phtml',
302
+            'jobs/partials/channel-list' => __DIR__.'/../view/partials/channel-list.phtml',
303
+            'jobs/assign-user' => __DIR__.'/../view/jobs/manage/assign-user.phtml',
304
+            'jobs/snapshot_or_preview' => __DIR__.'/../view/partials/snapshot_or_preview.phtml',
305
+            'jobs/history' => __DIR__.'/../view/partials/history.phtml',
306
+            'jobs/portalsummary' => __DIR__.'/../view/partials/portalsummary.phtml',
307
+            'content/jobs-publish-on-yawik' => __DIR__.'/../view/modals/yawik.phtml',
308
+            'content/jobs-publish-on-jobsintown' => __DIR__.'/../view/modals/jobsintown.phtml',
309
+            'content/jobs-publish-on-homepage' => __DIR__.'/../view/modals/homepage.phtml',
310
+            'content/jobs-publish-on-fazjob' => __DIR__.'/../view/modals/fazjob.phtml',
311
+            'content/jobs-terms-and-conditions' => __DIR__.'/../view/jobs/index/terms.phtml',
312
+            'mail/job-created' => __DIR__.'/../view/mails/job-created.phtml',
313
+            'mail/job-pending' => __DIR__.'/../view/mails/job-pending.phtml',
314
+            'mail/job-accepted' => __DIR__.'/../view/mails/job-accepted.phtml',
315
+            'mail/job-rejected' => __DIR__.'/../view/mails/job-rejected.phtml',
316
+            'mail/job-created.en' => __DIR__.'/../view/mails/job-created.en.phtml',
317
+            'mail/job-pending.en' => __DIR__.'/../view/mails/job-pending.en.phtml',
318
+            'mail/job-accepted.en' => __DIR__.'/../view/mails/job-accepted.en.phtml',
319
+            'mail/job-rejected.en' => __DIR__.'/../view/mails/job-rejected.en.phtml',
320
+            'jobs/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml',
321
+            'jobs/error/expired' => __DIR__.'/../view/error/expired.phtml',
322 322
         ),
323 323
 
324 324
         // Where to look for view templates not mapped above
325 325
         'template_path_stack' => array(
326
-            __DIR__ . '/../view',
326
+            __DIR__.'/../view',
327 327
         ),
328 328
     ),
329 329
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Options/BaseFieldsetOptions.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @var array
34 34
      */
35
-   protected $fields=[
35
+    protected $fields=[
36 36
         self::TITLE => [
37 37
             'enabled' => true,
38 38
             'options' => [
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 class BaseFieldsetOptions extends FieldsetCustomizationOptions
25 25
 {
26 26
 
27
-    const TITLE =  'title';
27
+    const TITLE = 'title';
28 28
     const LOCATION = 'geoLocation';
29 29
 
30 30
     /**
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @var array
34 34
      */
35
-   protected $fields=[
35
+   protected $fields = [
36 36
         self::TITLE => [
37 37
             'enabled' => true,
38 38
             'options' => [
Please login to merge, or discard this patch.