Completed
Push — develop ( 3af89d...cb4d39 )
by
unknown
07:47
created
module/Jobs/src/Jobs/Form/Hydrator/Strategy/JobManagerStrategy.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,6 @@
 block discarded – undo
46 46
      * Converts the given value so that it can be hydrated by the hydrator.
47 47
      *
48 48
      * @param mixed $value The original value.
49
-     * @param array $data  (optional) The original data for context.
50 49
      *
51 50
      * @return mixed Returns the value that should be hydrated.
52 51
      */
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/CompanyNameFieldset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @var array
35 35
      */
36
-    protected $headscripts = [ 'Jobs/js/forms.manager-select.js' ];
36
+    protected $headscripts = ['Jobs/js/forms.manager-select.js'];
37 37
 
38 38
     public function setHeadscripts(array $scripts)
39 39
     {
Please login to merge, or discard this patch.
module/Jobs/config/module.config.php 1 patch
Spacing   +37 added lines, -37 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' => [ __DIR__ . '/../src/Jobs/Entity'],
18
+                'paths' => [__DIR__.'/../src/Jobs/Entity'],
19 19
             ],
20 20
         ],
21 21
         'eventmanager' => [
@@ -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' => [
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             'translation_file_patterns' => [
52 52
                     [
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' => [
96 96
                         'template',
97 97
                     ],
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 
233 233
 
234 234
     'event_manager' => [
235
-        'Core/AdminController/Events' => [ 'listeners' => [
235
+        'Core/AdminController/Events' => ['listeners' => [
236 236
             'Jobs/Listener/AdminWidgetProvider' => \Core\Controller\AdminControllerEvent::EVENT_DASHBOARD,
237 237
         ]],
238 238
 
@@ -299,41 +299,41 @@  discard block
 block discarded – undo
299 299
     'view_manager' => [
300 300
         // Map template to files. Speeds up the lookup through the template stack.
301 301
         'template_map' => [
302
-            'jobs/form/list-filter' => __DIR__ . '/../view/form/list-filter.phtml',
303
-            'jobs/form/apply-identifier' => __DIR__ . '/../view/form/apply-identifier.phtml',
304
-            'jobs/form/hiring-organization-select' => __DIR__ . '/../view/form/hiring-organization-select.phtml',
305
-            'jobs/form/multiposting-select' => __DIR__ . '/../view/form/multiposting-select.phtml',
306
-            'jobs/form/multiposting-checkboxes' => __DIR__ . '/../view/form/multiposting-checkboxes.phtml',
307
-            'jobs/form/ats-mode.view' => __DIR__ . '/../view/form/ats-mode.view.phtml',
308
-            'jobs/form/ats-mode.form' => __DIR__ . '/../view/form/ats-mode.form.phtml',
309
-            'jobs/form/company-name-fieldset' => __DIR__ . '/../view/form/company-name-fieldset.phtml',
310
-            'jobs/form/preview' => __DIR__ . '/../view/form/preview.phtml',
311
-            'jobs/form/customer-note' => __DIR__ . '/../view/form/customer-note.phtml',
312
-            'jobs/partials/channel-list' => __DIR__ . '/../view/partials/channel-list.phtml',
313
-            'jobs/assign-user' => __DIR__ . '/../view/jobs/manage/assign-user.phtml',
314
-            'jobs/snapshot_or_preview' => __DIR__ . '/../view/partials/snapshot_or_preview.phtml',
315
-            'jobs/history' => __DIR__ . '/../view/partials/history.phtml',
316
-            'jobs/portalsummary' => __DIR__ . '/../view/partials/portalsummary.phtml',
317
-            'content/jobs-publish-on-yawik' => __DIR__ . '/../view/modals/yawik.phtml',
318
-            'content/jobs-publish-on-jobsintown' => __DIR__ . '/../view/modals/jobsintown.phtml',
319
-            'content/jobs-publish-on-homepage' => __DIR__ . '/../view/modals/homepage.phtml',
320
-            'content/jobs-publish-on-fazjob' => __DIR__ . '/../view/modals/fazjob.phtml',
321
-            'content/jobs-terms-and-conditions' => __DIR__ . '/../view/jobs/index/terms.phtml',
322
-            'mail/job-created' => __DIR__ . '/../view/mails/job-created.phtml',
323
-            'mail/job-pending' => __DIR__ . '/../view/mails/job-pending.phtml',
324
-            'mail/job-accepted' => __DIR__ . '/../view/mails/job-accepted.phtml',
325
-            'mail/job-rejected' => __DIR__ . '/../view/mails/job-rejected.phtml',
326
-            'mail/job-created.en' => __DIR__ . '/../view/mails/job-created.en.phtml',
327
-            'mail/job-pending.en' => __DIR__ . '/../view/mails/job-pending.en.phtml',
328
-            'mail/job-accepted.en' => __DIR__ . '/../view/mails/job-accepted.en.phtml',
329
-            'mail/job-rejected.en' => __DIR__ . '/../view/mails/job-rejected.en.phtml',
330
-            'jobs/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
331
-            'jobs/error/expired' => __DIR__ . '/../view/error/expired.phtml',
302
+            'jobs/form/list-filter' => __DIR__.'/../view/form/list-filter.phtml',
303
+            'jobs/form/apply-identifier' => __DIR__.'/../view/form/apply-identifier.phtml',
304
+            'jobs/form/hiring-organization-select' => __DIR__.'/../view/form/hiring-organization-select.phtml',
305
+            'jobs/form/multiposting-select' => __DIR__.'/../view/form/multiposting-select.phtml',
306
+            'jobs/form/multiposting-checkboxes' => __DIR__.'/../view/form/multiposting-checkboxes.phtml',
307
+            'jobs/form/ats-mode.view' => __DIR__.'/../view/form/ats-mode.view.phtml',
308
+            'jobs/form/ats-mode.form' => __DIR__.'/../view/form/ats-mode.form.phtml',
309
+            'jobs/form/company-name-fieldset' => __DIR__.'/../view/form/company-name-fieldset.phtml',
310
+            'jobs/form/preview' => __DIR__.'/../view/form/preview.phtml',
311
+            'jobs/form/customer-note' => __DIR__.'/../view/form/customer-note.phtml',
312
+            'jobs/partials/channel-list' => __DIR__.'/../view/partials/channel-list.phtml',
313
+            'jobs/assign-user' => __DIR__.'/../view/jobs/manage/assign-user.phtml',
314
+            'jobs/snapshot_or_preview' => __DIR__.'/../view/partials/snapshot_or_preview.phtml',
315
+            'jobs/history' => __DIR__.'/../view/partials/history.phtml',
316
+            'jobs/portalsummary' => __DIR__.'/../view/partials/portalsummary.phtml',
317
+            'content/jobs-publish-on-yawik' => __DIR__.'/../view/modals/yawik.phtml',
318
+            'content/jobs-publish-on-jobsintown' => __DIR__.'/../view/modals/jobsintown.phtml',
319
+            'content/jobs-publish-on-homepage' => __DIR__.'/../view/modals/homepage.phtml',
320
+            'content/jobs-publish-on-fazjob' => __DIR__.'/../view/modals/fazjob.phtml',
321
+            'content/jobs-terms-and-conditions' => __DIR__.'/../view/jobs/index/terms.phtml',
322
+            'mail/job-created' => __DIR__.'/../view/mails/job-created.phtml',
323
+            'mail/job-pending' => __DIR__.'/../view/mails/job-pending.phtml',
324
+            'mail/job-accepted' => __DIR__.'/../view/mails/job-accepted.phtml',
325
+            'mail/job-rejected' => __DIR__.'/../view/mails/job-rejected.phtml',
326
+            'mail/job-created.en' => __DIR__.'/../view/mails/job-created.en.phtml',
327
+            'mail/job-pending.en' => __DIR__.'/../view/mails/job-pending.en.phtml',
328
+            'mail/job-accepted.en' => __DIR__.'/../view/mails/job-accepted.en.phtml',
329
+            'mail/job-rejected.en' => __DIR__.'/../view/mails/job-rejected.en.phtml',
330
+            'jobs/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml',
331
+            'jobs/error/expired' => __DIR__.'/../view/error/expired.phtml',
332 332
         ],
333 333
 
334 334
         // Where to look for view templates not mapped above
335 335
         'template_path_stack' => [
336
-            __DIR__ . '/../view',
336
+            __DIR__.'/../view',
337 337
         ],
338 338
     ],
339 339
 
Please login to merge, or discard this patch.