Completed
Push — develop ( e70242...efddeb )
by Mathias
65:39 queued 53:48
created
module/Behat/src/SummaryFormContext.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 		$method = 'iSave'.$type;
73 73
 		if(method_exists($this,$method)){
74 74
 			call_user_func([$this,$method]);
75
-		}else{
75
+		} else{
76 76
 			$locator = $this->elementMap[$type].'-buttons-submit';
77 77
 			$this->coreContext->scrollIntoView($locator);
78 78
 			$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
Please login to merge, or discard this patch.
Indentation   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -15,112 +15,112 @@
 block discarded – undo
15 15
 
16 16
 class SummaryFormContext implements Context
17 17
 {
18
-	use CommonContextTrait;
18
+    use CommonContextTrait;
19 19
 	
20
-	private $elementMap = array(
21
-		'name' => '#sf-nameForm',
22
-		'location' => '#sf-locationForm',
23
-		'employees' => '#sf-employeesManagement',
24
-		'workflow' => '#sf-workflowSettings',
25
-		'jobTitleAndLocation' => '#general-locationForm',
26
-		'jobClassification' => '#sf-general-classifications',
27
-		'customerNote' => '#sf-general-customerNote',
28
-		'personalInformations' => '#sf-contact-contact',
29
-		'resumePersonalInformations' => '#sf-contact',
30
-	);
20
+    private $elementMap = array(
21
+        'name' => '#sf-nameForm',
22
+        'location' => '#sf-locationForm',
23
+        'employees' => '#sf-employeesManagement',
24
+        'workflow' => '#sf-workflowSettings',
25
+        'jobTitleAndLocation' => '#general-locationForm',
26
+        'jobClassification' => '#sf-general-classifications',
27
+        'customerNote' => '#sf-general-customerNote',
28
+        'personalInformations' => '#sf-contact-contact',
29
+        'resumePersonalInformations' => '#sf-contact',
30
+    );
31 31
 	
32
-	/**
33
-	 * @When I click edit on :name form
34
-	 * @TODO: [ZF3] move this method to CoreContext
35
-	 */
36
-	public function iClickEditOnForm($name)
37
-	{
38
-		$this->iClickForm($name);
39
-		$name = Inflector::camelize($name);
40
-		$type = $this->elementMap[$name];
41
-		$locator = $type.' .sf-summary .sf-controls button';
42
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
43
-		if(!$element){
44
-			throw new \Exception('No element found with this locator: "'.$locator.'"');
45
-		}
46
-		$element->click();
47
-	}
32
+    /**
33
+     * @When I click edit on :name form
34
+     * @TODO: [ZF3] move this method to CoreContext
35
+     */
36
+    public function iClickEditOnForm($name)
37
+    {
38
+        $this->iClickForm($name);
39
+        $name = Inflector::camelize($name);
40
+        $type = $this->elementMap[$name];
41
+        $locator = $type.' .sf-summary .sf-controls button';
42
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
43
+        if(!$element){
44
+            throw new \Exception('No element found with this locator: "'.$locator.'"');
45
+        }
46
+        $element->click();
47
+    }
48 48
 	
49
-	/**
50
-	 * @When I click :form form
51
-	 */
52
-	public function iClickForm($name)
53
-	{
54
-		$name = Inflector::camelize($name);
55
-		$type = $this->elementMap[$name];
56
-		$locator = $type.' .sf-summary';
57
-		$session = $this->minkContext->getSession();
58
-		$script = <<<EOC
49
+    /**
50
+     * @When I click :form form
51
+     */
52
+    public function iClickForm($name)
53
+    {
54
+        $name = Inflector::camelize($name);
55
+        $type = $this->elementMap[$name];
56
+        $locator = $type.' .sf-summary';
57
+        $session = $this->minkContext->getSession();
58
+        $script = <<<EOC
59 59
 var tElement = jQuery("$locator .sf-controls");
60 60
 tElement.css('display','block');
61 61
 tElement.css('visibility','visible');
62 62
 EOC;
63
-		$session->executeScript($script);
64
-	}
63
+        $session->executeScript($script);
64
+    }
65 65
 	
66
-	/**
67
-	 * @When I save :type form
68
-	 */
69
-	public function iSaveForm($type)
70
-	{
71
-		$type = Inflector::camelize($type);
72
-		$method = 'iSave'.$type;
73
-		if(method_exists($this,$method)){
74
-			call_user_func([$this,$method]);
75
-		}else{
76
-			$locator = $this->elementMap[$type].'-buttons-submit';
77
-			$this->coreContext->scrollIntoView($locator);
78
-			$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
79
-			$element->click();
80
-		}
81
-	}
66
+    /**
67
+     * @When I save :type form
68
+     */
69
+    public function iSaveForm($type)
70
+    {
71
+        $type = Inflector::camelize($type);
72
+        $method = 'iSave'.$type;
73
+        if(method_exists($this,$method)){
74
+            call_user_func([$this,$method]);
75
+        }else{
76
+            $locator = $this->elementMap[$type].'-buttons-submit';
77
+            $this->coreContext->scrollIntoView($locator);
78
+            $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
79
+            $element->click();
80
+        }
81
+    }
82 82
 	
83
-	public function iSaveOrganizationName()
84
-	{
85
-		$locator = '#nameForm-buttons-submit';
86
-		$this->coreContext->scrollIntoView($locator);
87
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
88
-		$element->click();
89
-	}
83
+    public function iSaveOrganizationName()
84
+    {
85
+        $locator = '#nameForm-buttons-submit';
86
+        $this->coreContext->scrollIntoView($locator);
87
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
88
+        $element->click();
89
+    }
90 90
 	
91
-	/**
92
-	 * Saving organization workflow
93
-	 */
94
-	public function iSaveWorkflow()
95
-	{
96
-		$locator = '#workflowSettings-buttons-submit';
97
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
98
-		$element->click();
99
-	}
91
+    /**
92
+     * Saving organization workflow
93
+     */
94
+    public function iSaveWorkflow()
95
+    {
96
+        $locator = '#workflowSettings-buttons-submit';
97
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
98
+        $element->click();
99
+    }
100 100
 	
101
-	public function iSaveOrganizationLocation()
102
-	{
103
-		$locator = '#locationForm-buttons-submit';
104
-		$this->coreContext->scrollIntoView($locator);
105
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
106
-		$element->click();
107
-	}
101
+    public function iSaveOrganizationLocation()
102
+    {
103
+        $locator = '#locationForm-buttons-submit';
104
+        $this->coreContext->scrollIntoView($locator);
105
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
106
+        $element->click();
107
+    }
108 108
 	
109 109
 	
110
-	public function iSaveJobClassification()
111
-	{
112
-		$locator = '#general-classifications-buttons-submit';
113
-		$this->coreContext->scrollIntoView($locator);
114
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
115
-		$element->click();
116
-	}
110
+    public function iSaveJobClassification()
111
+    {
112
+        $locator = '#general-classifications-buttons-submit';
113
+        $this->coreContext->scrollIntoView($locator);
114
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
115
+        $element->click();
116
+    }
117 117
 	
118
-	public function iSaveCustomerNote()
119
-	{
120
-		$locator = '#general-customerNote-buttons-submit';
121
-		$this->coreContext->scrollIntoView('#sf-general-customerNote');
122
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
123
-		$element->click();
124
-	}
118
+    public function iSaveCustomerNote()
119
+    {
120
+        $locator = '#general-customerNote-buttons-submit';
121
+        $this->coreContext->scrollIntoView('#sf-general-customerNote');
122
+        $element = $this->minkContext->getSession()->getPage()->find('css',$locator);
123
+        $element->click();
124
+    }
125 125
 	
126 126
 }
127 127
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 		$name = Inflector::camelize($name);
40 40
 		$type = $this->elementMap[$name];
41 41
 		$locator = $type.' .sf-summary .sf-controls button';
42
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
43
-		if(!$element){
42
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
43
+		if (!$element) {
44 44
 			throw new \Exception('No element found with this locator: "'.$locator.'"');
45 45
 		}
46 46
 		$element->click();
@@ -70,12 +70,12 @@  discard block
 block discarded – undo
70 70
 	{
71 71
 		$type = Inflector::camelize($type);
72 72
 		$method = 'iSave'.$type;
73
-		if(method_exists($this,$method)){
74
-			call_user_func([$this,$method]);
75
-		}else{
73
+		if (method_exists($this, $method)) {
74
+			call_user_func([$this, $method]);
75
+		} else {
76 76
 			$locator = $this->elementMap[$type].'-buttons-submit';
77 77
 			$this->coreContext->scrollIntoView($locator);
78
-			$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
78
+			$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
79 79
 			$element->click();
80 80
 		}
81 81
 	}
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	{
85 85
 		$locator = '#nameForm-buttons-submit';
86 86
 		$this->coreContext->scrollIntoView($locator);
87
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
87
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
88 88
 		$element->click();
89 89
 	}
90 90
 	
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 	public function iSaveWorkflow()
95 95
 	{
96 96
 		$locator = '#workflowSettings-buttons-submit';
97
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
97
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
98 98
 		$element->click();
99 99
 	}
100 100
 	
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	{
103 103
 		$locator = '#locationForm-buttons-submit';
104 104
 		$this->coreContext->scrollIntoView($locator);
105
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
105
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
106 106
 		$element->click();
107 107
 	}
108 108
 	
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	{
112 112
 		$locator = '#general-classifications-buttons-submit';
113 113
 		$this->coreContext->scrollIntoView($locator);
114
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
114
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
115 115
 		$element->click();
116 116
 	}
117 117
 	
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	{
120 120
 		$locator = '#general-customerNote-buttons-submit';
121 121
 		$this->coreContext->scrollIntoView('#sf-general-customerNote');
122
-		$element = $this->minkContext->getSession()->getPage()->find('css',$locator);
122
+		$element = $this->minkContext->getSession()->getPage()->find('css', $locator);
123 123
 		$element->click();
124 124
 	}
125 125
 	
Please login to merge, or discard this patch.
module/Jobs/config/module.config.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -274,9 +274,9 @@  discard block
 block discarded – undo
274 274
         ],
275 275
         'factories' => [
276 276
             'Jobs/Import' => [ Controller\ImportController::class, 'factory'],
277
-        	'Jobs/Console' => [ConsoleController::class,'factory'],
278
-	        'Jobs/AdminCategories' => [AdminCategoriesController::class,'factory'],
279
-	        'Jobs/Admin'      => [AdminController::class,'factory'],
277
+            'Jobs/Console' => [ConsoleController::class,'factory'],
278
+            'Jobs/AdminCategories' => [AdminCategoriesController::class,'factory'],
279
+            'Jobs/Admin'      => [AdminController::class,'factory'],
280 280
             'Jobs/Template' => 'Jobs\Factory\Controller\TemplateControllerFactory',
281 281
             'Jobs/Index' => 'Jobs\Factory\Controller\IndexControllerFactory',
282 282
             'Jobs/Approval' => 'Jobs\Factory\Controller\ApprovalControllerFactory',
@@ -428,15 +428,15 @@  discard block
 block discarded – undo
428 428
         'invokables' => [
429 429
             'Jobs/Location/New'                 => 'Jobs\Form\InputFilter\JobLocationNew',
430 430
             //'Jobs/Location/Edit'                => 'Jobs\Form\InputFilter\JobLocationEdit',
431
-	        JobLocationEdit::class => JobLocationEdit::class,
431
+            JobLocationEdit::class => JobLocationEdit::class,
432 432
             'Jobs/Company'                      => 'Jobs\Form\InputFilter\CompanyName',
433 433
         ],
434 434
         'factories' => [
435 435
             'Jobs/AtsMode'                      => 'Jobs\Factory\Form\InputFilter\AtsModeFactory',
436 436
         ],
437
-	    'aliases' => [
438
-	    	'Jobs/Location/Edit' => JobLocationEdit::class
439
-	    ]
437
+        'aliases' => [
438
+            'Jobs/Location/Edit' => JobLocationEdit::class
439
+        ]
440 440
     ],
441 441
 
442 442
     'filters' => [
Please login to merge, or discard this patch.
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
                  * for multiple paths.
22 22
                  * example https://github.com/doctrine/DoctrineORMModule
23 23
                  */
24
-                'paths' => [ __DIR__ . '/../src/Jobs/Entity'],
24
+                'paths' => [__DIR__.'/../src/Jobs/Entity'],
25 25
             ],
26 26
         ],
27 27
         'eventmanager' => [
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
     ],
35 35
 
36 36
     'options' => [
37
-        'Jobs/JobboardSearchOptions' => [ 'class' => '\Jobs\Options\JobboardSearchOptions' ],
38
-        'Jobs/BaseFieldsetOptions' => [ 'class' => '\Jobs\Options\BaseFieldsetOptions' ],
37
+        'Jobs/JobboardSearchOptions' => ['class' => '\Jobs\Options\JobboardSearchOptions'],
38
+        'Jobs/BaseFieldsetOptions' => ['class' => '\Jobs\Options\BaseFieldsetOptions'],
39 39
     ],
40 40
 
41 41
     'Jobs' => [
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             'translation_file_patterns' => [
58 58
                     [
59 59
                             'type'     => 'gettext',
60
-                            'base_dir' => __DIR__ . '/../language',
60
+                            'base_dir' => __DIR__.'/../language',
61 61
                             'pattern'  => '%s.mo',
62 62
                     ],
63 63
             ],
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                     'Jobboard',
98 98
                     'Jobs/Jobboard',
99 99
                     'Jobs/ApiJobListByChannel',
100
-                    'Jobs/Template' => [ 'view', 'edittemplate' ],
100
+                    'Jobs/Template' => ['view', 'edittemplate'],
101 101
                     'Jobs/Manage' => [
102 102
                         'template',
103 103
                     ],
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
             'Jobs/Listener/AdminWidgetProvider'           => 'Jobs\Factory\Listener\AdminWidgetProviderFactory',
226 226
             'Jobs/ViewModelTemplateFilter'                => 'Jobs\Factory\Filter\ViewModelTemplateFilterFactory',
227 227
             'Jobs\Model\ApiJobDehydrator'                 => 'Jobs\Factory\Model\ApiJobDehydratorFactory',
228
-            'Jobs/Listener/Publisher'                     => [Publisher::class,'factory'],
228
+            'Jobs/Listener/Publisher'                     => [Publisher::class, 'factory'],
229 229
             'Jobs/PreviewLinkHydrator'                    => 'Jobs\Form\Hydrator\PreviewLinkHydrator::factory',
230 230
             'Jobs\Auth\Dependency\ListListener'           => 'Jobs\Factory\Auth\Dependency\ListListenerFactory',
231 231
             'Jobs/DefaultCategoriesBuilder'              => 'Jobs\Factory\Repository\DefaultCategoriesBuilderFactory',
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
 
244 244
     'event_manager' => [
245
-        'Core/AdminController/Events' => [ 'listeners' => [
245
+        'Core/AdminController/Events' => ['listeners' => [
246 246
             'Jobs/Listener/AdminWidgetProvider' => \Core\Controller\AdminControllerEvent::EVENT_DASHBOARD,
247 247
         ]],
248 248
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
         'Core/Ajax/Events' => ['listeners' => [
266 266
             \Jobs\Listener\DeleteJob::class => ['jobs.delete', true],
267 267
             \Jobs\Listener\GetOrganizationManagers::class => ['jobs.manager-select', true],
268
-            \Jobs\Listener\LoadActiveOrganizations::class => [ 'jobs.admin.activeorganizations', true],
268
+            \Jobs\Listener\LoadActiveOrganizations::class => ['jobs.admin.activeorganizations', true],
269 269
 
270 270
         ]],
271 271
 
@@ -287,10 +287,10 @@  discard block
 block discarded – undo
287 287
             'Jobs/ApiJobListByChannel' => 'Jobs\Controller\ApiJobListByChannelController',
288 288
         ],
289 289
         'factories' => [
290
-            'Jobs/Import' => [ Controller\ImportController::class, 'factory'],
291
-        	'Jobs/Console' => [ConsoleController::class,'factory'],
292
-	        'Jobs/AdminCategories' => [AdminCategoriesController::class,'factory'],
293
-	        'Jobs/Admin'      => [AdminController::class,'factory'],
290
+            'Jobs/Import' => [Controller\ImportController::class, 'factory'],
291
+        	'Jobs/Console' => [ConsoleController::class, 'factory'],
292
+	        'Jobs/AdminCategories' => [AdminCategoriesController::class, 'factory'],
293
+	        'Jobs/Admin'      => [AdminController::class, 'factory'],
294 294
             'Jobs/Template' => 'Jobs\Factory\Controller\TemplateControllerFactory',
295 295
             'Jobs/Index' => 'Jobs\Factory\Controller\IndexControllerFactory',
296 296
             'Jobs/Approval' => 'Jobs\Factory\Controller\ApprovalControllerFactory',
@@ -323,41 +323,41 @@  discard block
 block discarded – undo
323 323
     'view_manager' => [
324 324
         // Map template to files. Speeds up the lookup through the template stack.
325 325
         'template_map' => [
326
-            'jobs/form/list-filter' => __DIR__ . '/../view/form/list-filter.phtml',
327
-            'jobs/form/apply-identifier' => __DIR__ . '/../view/form/apply-identifier.phtml',
328
-            'jobs/form/hiring-organization-select' => __DIR__ . '/../view/form/hiring-organization-select.phtml',
329
-            'jobs/form/multiposting-select' => __DIR__ . '/../view/form/multiposting-select.phtml',
330
-            'jobs/form/multiposting-checkboxes' => __DIR__ . '/../view/form/multiposting-checkboxes.phtml',
331
-            'jobs/form/ats-mode.view' => __DIR__ . '/../view/form/ats-mode.view.phtml',
332
-            'jobs/form/ats-mode.form' => __DIR__ . '/../view/form/ats-mode.form.phtml',
333
-            'jobs/form/company-name-fieldset' => __DIR__ . '/../view/form/company-name-fieldset.phtml',
334
-            'jobs/form/preview' => __DIR__ . '/../view/form/preview.phtml',
335
-            'jobs/form/customer-note' => __DIR__ . '/../view/form/customer-note.phtml',
336
-            'jobs/partials/channel-list' => __DIR__ . '/../view/partials/channel-list.phtml',
337
-            'jobs/assign-user' => __DIR__ . '/../view/jobs/manage/assign-user.phtml',
338
-            'jobs/snapshot_or_preview' => __DIR__ . '/../view/partials/snapshot_or_preview.phtml',
339
-            'jobs/history' => __DIR__ . '/../view/partials/history.phtml',
340
-            'jobs/portalsummary' => __DIR__ . '/../view/partials/portalsummary.phtml',
341
-            'content/jobs-publish-on-yawik' => __DIR__ . '/../view/modals/yawik.phtml',
342
-            'content/jobs-publish-on-jobsintown' => __DIR__ . '/../view/modals/jobsintown.phtml',
343
-            'content/jobs-publish-on-homepage' => __DIR__ . '/../view/modals/homepage.phtml',
344
-            'content/jobs-publish-on-fazjob' => __DIR__ . '/../view/modals/fazjob.phtml',
345
-            'content/jobs-terms-and-conditions' => __DIR__ . '/../view/jobs/index/terms.phtml',
346
-            'mail/job-created' => __DIR__ . '/../view/mails/job-created.phtml',
347
-            'mail/job-pending' => __DIR__ . '/../view/mails/job-pending.phtml',
348
-            'mail/job-accepted' => __DIR__ . '/../view/mails/job-accepted.phtml',
349
-            'mail/job-rejected' => __DIR__ . '/../view/mails/job-rejected.phtml',
350
-            'mail/job-created.en' => __DIR__ . '/../view/mails/job-created.en.phtml',
351
-            'mail/job-pending.en' => __DIR__ . '/../view/mails/job-pending.en.phtml',
352
-            'mail/job-accepted.en' => __DIR__ . '/../view/mails/job-accepted.en.phtml',
353
-            'mail/job-rejected.en' => __DIR__ . '/../view/mails/job-rejected.en.phtml',
354
-            'jobs/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
355
-            'jobs/error/expired' => __DIR__ . '/../view/error/expired.phtml',
326
+            'jobs/form/list-filter' => __DIR__.'/../view/form/list-filter.phtml',
327
+            'jobs/form/apply-identifier' => __DIR__.'/../view/form/apply-identifier.phtml',
328
+            'jobs/form/hiring-organization-select' => __DIR__.'/../view/form/hiring-organization-select.phtml',
329
+            'jobs/form/multiposting-select' => __DIR__.'/../view/form/multiposting-select.phtml',
330
+            'jobs/form/multiposting-checkboxes' => __DIR__.'/../view/form/multiposting-checkboxes.phtml',
331
+            'jobs/form/ats-mode.view' => __DIR__.'/../view/form/ats-mode.view.phtml',
332
+            'jobs/form/ats-mode.form' => __DIR__.'/../view/form/ats-mode.form.phtml',
333
+            'jobs/form/company-name-fieldset' => __DIR__.'/../view/form/company-name-fieldset.phtml',
334
+            'jobs/form/preview' => __DIR__.'/../view/form/preview.phtml',
335
+            'jobs/form/customer-note' => __DIR__.'/../view/form/customer-note.phtml',
336
+            'jobs/partials/channel-list' => __DIR__.'/../view/partials/channel-list.phtml',
337
+            'jobs/assign-user' => __DIR__.'/../view/jobs/manage/assign-user.phtml',
338
+            'jobs/snapshot_or_preview' => __DIR__.'/../view/partials/snapshot_or_preview.phtml',
339
+            'jobs/history' => __DIR__.'/../view/partials/history.phtml',
340
+            'jobs/portalsummary' => __DIR__.'/../view/partials/portalsummary.phtml',
341
+            'content/jobs-publish-on-yawik' => __DIR__.'/../view/modals/yawik.phtml',
342
+            'content/jobs-publish-on-jobsintown' => __DIR__.'/../view/modals/jobsintown.phtml',
343
+            'content/jobs-publish-on-homepage' => __DIR__.'/../view/modals/homepage.phtml',
344
+            'content/jobs-publish-on-fazjob' => __DIR__.'/../view/modals/fazjob.phtml',
345
+            'content/jobs-terms-and-conditions' => __DIR__.'/../view/jobs/index/terms.phtml',
346
+            'mail/job-created' => __DIR__.'/../view/mails/job-created.phtml',
347
+            'mail/job-pending' => __DIR__.'/../view/mails/job-pending.phtml',
348
+            'mail/job-accepted' => __DIR__.'/../view/mails/job-accepted.phtml',
349
+            'mail/job-rejected' => __DIR__.'/../view/mails/job-rejected.phtml',
350
+            'mail/job-created.en' => __DIR__.'/../view/mails/job-created.en.phtml',
351
+            'mail/job-pending.en' => __DIR__.'/../view/mails/job-pending.en.phtml',
352
+            'mail/job-accepted.en' => __DIR__.'/../view/mails/job-accepted.en.phtml',
353
+            'mail/job-rejected.en' => __DIR__.'/../view/mails/job-rejected.en.phtml',
354
+            'jobs/error/no-parent' => __DIR__.'/../view/error/no-parent.phtml',
355
+            'jobs/error/expired' => __DIR__.'/../view/error/expired.phtml',
356 356
         ],
357 357
 
358 358
         // Where to look for view templates not mapped above
359 359
         'template_path_stack' => [
360
-            __DIR__ . '/../view',
360
+            __DIR__.'/../view',
361 361
         ],
362 362
     ],
363 363
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Controller/ImportController.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -191,9 +191,9 @@
 block discarded – undo
191 191
                                 $location = new Location();
192 192
                                 $coords = array_map(function ($i) { return (float) $i; }, $locData['coordinates']);
193 193
                                 $location->setCountry($locData['country'])
194
-                                         ->setRegion($locData['region'])
195
-                                         ->setCity($locData['city'])
196
-                                         ->setCoordinates(new Point($coords));
194
+                                            ->setRegion($locData['region'])
195
+                                            ->setCity($locData['city'])
196
+                                            ->setCoordinates(new Point($coords));
197 197
 
198 198
                                 $jobLocations->add($location);
199 199
                             }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                         $entity = $repositoriesJob->findOneBy(array("applyId" => (string) $applyId));
85 85
                         if (!isset($entity)) {
86 86
                             // new Job (the more likely branch)
87
-                            $entity =$repositoriesJob->create(array("applyId" => (string) $applyId));
87
+                            $entity = $repositoriesJob->create(array("applyId" => (string) $applyId));
88 88
                         } else {
89 89
                             $createdJob = false;
90 90
                         }
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
                             $entity->getPermissions()->grant($group, PermissionsInterface::PERMISSION_VIEW);
131 131
                         }
132 132
                         $result['isSaved'] = true;
133
-                        $log->info('Jobs/manage/saveJob [user: ' . $user->getLogin() . ']:' . var_export($p, true));
133
+                        $log->info('Jobs/manage/saveJob [user: '.$user->getLogin().']:'.var_export($p, true));
134 134
 
135 135
                         if (!empty($params->companyId)) {
136
-                            $companyId                = $params->companyId . $loginSuffix;
136
+                            $companyId                = $params->companyId.$loginSuffix;
137 137
                             $repOrganization          = $repositories->get('Organizations/Organization');
138 138
                             $hydratorManager          = $services->get('HydratorManager');
139 139
                             /* @var \Organizations\Entity\Hydrator\OrganizationHydrator $hydrator */
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                             $jobLocations->clear();
190 190
                             foreach ($locations as $locData) {
191 191
                                 $location = new Location();
192
-                                $coords = array_map(function ($i) { return (float) $i; }, $locData['coordinates']);
192
+                                $coords = array_map(function($i) { return (float) $i; }, $locData['coordinates']);
193 193
                                 $location->setCountry($locData['country'])
194 194
                                          ->setRegion($locData['region'])
195 195
                                          ->setCity($locData['city'])
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
                                                     break;
255 255
                                             }
256 256
                                             if (array_key_exists($portal, $result['portals'])) {
257
-                                                throw new \RuntimeException('Publisher-Events (internal error): There are two publisher registered for ' . $portal);
257
+                                                throw new \RuntimeException('Publisher-Events (internal error): There are two publisher registered for '.$portal);
258 258
                                             }
259 259
                                             $result['portals'][$portal] = $status;
260 260
                                         } else {
@@ -267,16 +267,16 @@  discard block
 block discarded – undo
267 267
                             }
268 268
                         }
269 269
                     } else {
270
-                        $log->info('Jobs/manage/saveJob [error: ' . $form->getMessages() . ']:' . var_export($p, true));
270
+                        $log->info('Jobs/manage/saveJob [error: '.$form->getMessages().']:'.var_export($p, true));
271 271
                         $result['valid Error'] = $form->getMessages();
272 272
                     }
273 273
                 }
274 274
             } else {
275
-                $log->info('Jobs/manage/saveJob [error: session lost]:' . var_export($p, true));
275
+                $log->info('Jobs/manage/saveJob [error: session lost]:'.var_export($p, true));
276 276
                 $result['message'] = 'session_id is lost';
277 277
             }
278 278
         } catch (\Exception $e) {
279
-            $result['message'] = 'exception occured: ' . $e->getMessage();
279
+            $result['message'] = 'exception occured: '.$e->getMessage();
280 280
         }
281 281
         //$services->get('Core/Log')->info('Jobs/manage/saveJob result:' . PHP_EOL . var_export($p, True));
282 282
         return new JsonModel($result);
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Listener/Events/JobEvent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@  discard block
 block discarded – undo
33 33
      * Event is fired when a users has created a new job opening and accepted the
34 34
      * terms and conditions
35 35
      */
36
-    const EVENT_JOB_CREATED   = 'job.created';
36
+    const EVENT_JOB_CREATED = 'job.created';
37 37
 
38 38
     /**
39 39
      * Event is fired when the owner of the YAWIK installation has accepted the job
40 40
      * opening
41 41
      */
42
-    const EVENT_JOB_ACCEPTED   = 'job.accepted';
42
+    const EVENT_JOB_ACCEPTED = 'job.accepted';
43 43
 
44 44
     /**
45 45
      * Event is fired, when the owner of the YAWIK installation has rejected the job
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * get all available names for publishing
57 57
      */
58
-    const PORTAL_AVAIL_NAME    = 'portal.availname';
58
+    const PORTAL_AVAIL_NAME = 'portal.availname';
59 59
 
60 60
     /**
61 61
      * portals to be published
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/Tree/Node.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
      */
70 70
     protected $parent;
71 71
 
72
+    /**
73
+     * @param string $value
74
+     */
72 75
     final public static function filterValue($value)
73 76
     {
74 77
         $value = mb_strtolower($value);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
 
154 154
     public function getValueWithParents($withRoot = false, $useNames = false)
155 155
     {
156
-        $parts = [ ($useNames ? $this->getName() : $this->getValue()) ];
156
+        $parts = [($useNames ? $this->getName() : $this->getValue())];
157 157
         $item = $this;
158 158
 
159 159
         while ($item = $item->getParent()) {
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/SnapshotMeta.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
  * @ODM\HasLifecycleCallbacks
21 21
  */
22 22
 class SnapshotMeta implements ModificationDateAwareEntityInterface,
23
-                              DraftableEntityInterface,
24
-                              Status\StatusAwareEntityInterface
23
+                                DraftableEntityInterface,
24
+                                Status\StatusAwareEntityInterface
25 25
 {
26 26
     use ModificationDateAwareEntityTrait, DraftableEntityTrait, Status\StatusAwareEntityTrait;
27 27
 }
Please login to merge, or discard this patch.
module/Cv/src/Cv/Factory/Form/LanguageSkillCollectionFactory.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -9,19 +9,19 @@
 block discarded – undo
9 9
 
10 10
 class LanguageSkillCollectionFactory implements FactoryInterface
11 11
 {
12
-	/**
13
-	 * Create a CollectionContainer form
14
-	 *
15
-	 * @param ContainerInterface $container
16
-	 * @param string $requestedName
17
-	 * @param array|null $options
18
-	 *
19
-	 * @return \Core\Form\CollectionContainer
20
-	 */
12
+    /**
13
+     * Create a CollectionContainer form
14
+     *
15
+     * @param ContainerInterface $container
16
+     * @param string $requestedName
17
+     * @param array|null $options
18
+     *
19
+     * @return \Core\Form\CollectionContainer
20
+     */
21 21
     public function __invoke(ContainerInterface $container, $requestedName, array $options = null) {
22
-	    $collectionContainer = new CollectionContainer( 'Cv/LanguageSkillForm', new Language() );
23
-	    $collectionContainer->setLabel(/*@translate */ 'Additional Language Skills' );
22
+        $collectionContainer = new CollectionContainer( 'Cv/LanguageSkillForm', new Language() );
23
+        $collectionContainer->setLabel(/*@translate */ 'Additional Language Skills' );
24 24
 	
25
-	    return $collectionContainer;
25
+        return $collectionContainer;
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	 * @return \Core\Form\CollectionContainer
20 20
 	 */
21 21
     public function __invoke(ContainerInterface $container, $requestedName, array $options = null) {
22
-	    $collectionContainer = new CollectionContainer( 'Cv/LanguageSkillForm', new Language() );
22
+	    $collectionContainer = new CollectionContainer('Cv/LanguageSkillForm', new Language());
23 23
 	    $collectionContainer->setLabel(/*@translate */ 'Additional Language Skills' );
24 24
 	
25 25
 	    return $collectionContainer;
Please login to merge, or discard this patch.
public/index.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,23 +11,23 @@  discard block
 block discarded – undo
11 11
 
12 12
 date_default_timezone_set('Europe/Berlin');
13 13
 
14
-if(!version_compare(PHP_VERSION, '5.6.0', 'ge')){
15
-    echo sprintf('<p>Sorry, YAWIK requires at least PHP 5.6.0 to run, but this server currently provides PHP %s</p>',PHP_VERSION);
14
+if (!version_compare(PHP_VERSION, '5.6.0', 'ge')) {
15
+    echo sprintf('<p>Sorry, YAWIK requires at least PHP 5.6.0 to run, but this server currently provides PHP %s</p>', PHP_VERSION);
16 16
     echo '<p>Please ask your servers\' administrator to install the proper PHP version.</p>';
17 17
     exit;
18 18
 }
19 19
 
20 20
 if (php_sapi_name() == 'cli-server') {
21 21
     $parseUrl = parse_url(substr($_SERVER["REQUEST_URI"], 1));
22
-    $route = isset($parseUrl['path']) ? $parseUrl['path']:null;
23
-    if (is_file(__DIR__ . '/' . $route)) {
24
-        if(substr($route, -4) == ".php"){
25
-            require __DIR__ . '/' . $route;     // Include requested script files
22
+    $route = isset($parseUrl['path']) ? $parseUrl['path'] : null;
23
+    if (is_file(__DIR__.'/'.$route)) {
24
+        if (substr($route, -4) == ".php") {
25
+            require __DIR__.'/'.$route; // Include requested script files
26 26
             exit;
27 27
         }
28
-        return false;           // Serve file as is
28
+        return false; // Serve file as is
29 29
     } else {                    // Fallback to index.php
30
-        $_GET["q"] = $route;    // Try to emulate the behaviour of a .htaccess here.
30
+        $_GET["q"] = $route; // Try to emulate the behaviour of a .htaccess here.
31 31
     }
32 32
 }
33 33
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 } else {
48 48
     echo '<p>Could not initialize autoloading. This happens, if the dependencies are not installed yet.</p>';
49 49
     echo '<p>Please try to install the dependencies via: </p>';
50
-    echo '<code>cd '. realpath('.') .'<br>./install.sh</code>';
51
-    echo '<p>exit at ' . __FILE__ . ' in line ' . __LINE__ .'</p>';
50
+    echo '<code>cd '.realpath('.').'<br>./install.sh</code>';
51
+    echo '<p>exit at '.__FILE__.' in line '.__LINE__.'</p>';
52 52
     exit;
53 53
 }
54 54
 
Please login to merge, or discard this patch.
module/Behat/src/CoreContext.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,6 @@  discard block
 block discarded – undo
91 91
 	
92 92
 	/**
93 93
 	 * @param $name
94
-	 * @param array $params
95 94
 	 *
96 95
 	 * @return string
97 96
 	 */
@@ -102,6 +101,7 @@  discard block
 block discarded – undo
102 101
 	
103 102
 	/**
104 103
 	 * @When /^I hover over the element "([^"]*)"$/
104
+	 * @param string $locator
105 105
 	 */
106 106
 	public function iHoverOverTheElement($locator)
107 107
 	{
@@ -247,10 +247,10 @@  discard block
 block discarded – undo
247 247
 	}
248 248
 	
249 249
 	/**
250
-	 * @param $locator
250
+	 * @param string $locator
251 251
 	 * @param string $selector
252 252
 	 *
253
-	 * @return \Behat\Mink\Element\NodeElement|mixed|null
253
+	 * @return \Behat\Mink\Element\NodeElement|null
254 254
 	 */
255 255
 	public function getElement($locator,$selector='css')
256 256
 	{
Please login to merge, or discard this patch.
Indentation   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -25,283 +25,283 @@
 block discarded – undo
25 25
 {
26 26
     use CommonContextTrait;
27 27
 
28
-	static protected $application;
28
+    static protected $application;
29 29
 	
30
-	static private $jobCategoryChecked = false;
30
+    static private $jobCategoryChecked = false;
31 31
 	
32
-	/**
33
-	 * @BeforeScenario
34
-	 * @param BeforeScenarioScope $scope
35
-	 */
36
-	public function setupContexts(BeforeScenarioScope $scope)
37
-	{
38
-		if(false === static::$jobCategoryChecked){
39
-			/* @var Categories $catRepo */
40
-			$catRepo = $this->getRepositories()->get('Jobs/Category');
41
-			$all = $catRepo->findAll();
42
-			if(count($all) <= 1){
43
-				$catRepo->createDefaultCategory('professions');
44
-				$catRepo->createDefaultCategory('industries');
45
-				$catRepo->createDefaultCategory('employmentTypes');
46
-			}
47
-			static::$jobCategoryChecked = true;
48
-		}
49
-	}
32
+    /**
33
+     * @BeforeScenario
34
+     * @param BeforeScenarioScope $scope
35
+     */
36
+    public function setupContexts(BeforeScenarioScope $scope)
37
+    {
38
+        if(false === static::$jobCategoryChecked){
39
+            /* @var Categories $catRepo */
40
+            $catRepo = $this->getRepositories()->get('Jobs/Category');
41
+            $all = $catRepo->findAll();
42
+            if(count($all) <= 1){
43
+                $catRepo->createDefaultCategory('professions');
44
+                $catRepo->createDefaultCategory('industries');
45
+                $catRepo->createDefaultCategory('employmentTypes');
46
+            }
47
+            static::$jobCategoryChecked = true;
48
+        }
49
+    }
50 50
 	
51
-	/**
52
-	 * @return Application
53
-	 */
54
-	public function getApplication()
55
-	{
56
-		if(!is_object(static::$application)){
57
-			$configFile = realpath(__DIR__.'/../../../config/config.php');
58
-			$config = include($configFile);
59
-			static::$application = Application::init($config);
60
-		}
61
-		return static::$application;
62
-	}
51
+    /**
52
+     * @return Application
53
+     */
54
+    public function getApplication()
55
+    {
56
+        if(!is_object(static::$application)){
57
+            $configFile = realpath(__DIR__.'/../../../config/config.php');
58
+            $config = include($configFile);
59
+            static::$application = Application::init($config);
60
+        }
61
+        return static::$application;
62
+    }
63 63
 	
64
-	/**
65
-	 * @return \Zend\ServiceManager\ServiceManager
66
-	 */
67
-	public function getServiceManager()
68
-	{
69
-		return $this->getApplication()->getServiceManager();
70
-	}
64
+    /**
65
+     * @return \Zend\ServiceManager\ServiceManager
66
+     */
67
+    public function getServiceManager()
68
+    {
69
+        return $this->getApplication()->getServiceManager();
70
+    }
71 71
 	
72
-	/**
73
-	 * @return \Zend\EventManager\EventManagerInterface
74
-	 */
75
-	public function getEventManager()
76
-	{
77
-		return $this->getApplication()->getEventManager();
78
-	}
72
+    /**
73
+     * @return \Zend\EventManager\EventManagerInterface
74
+     */
75
+    public function getEventManager()
76
+    {
77
+        return $this->getApplication()->getEventManager();
78
+    }
79 79
 	
80
-	/**
81
-	 * @return RepositoryService
82
-	 */
83
-	public function getRepositories()
84
-	{
85
-		return $this->getServiceManager()->get('repositories');
86
-	}
80
+    /**
81
+     * @return RepositoryService
82
+     */
83
+    public function getRepositories()
84
+    {
85
+        return $this->getServiceManager()->get('repositories');
86
+    }
87 87
 	
88
-	/**
89
-	 * @param $name
90
-	 * @param array $params
91
-	 *
92
-	 * @return string
93
-	 */
94
-	public function generateUrl($name)
95
-	{
96
-		return $this->minkContext->locatePath($name);
97
-	}
88
+    /**
89
+     * @param $name
90
+     * @param array $params
91
+     *
92
+     * @return string
93
+     */
94
+    public function generateUrl($name)
95
+    {
96
+        return $this->minkContext->locatePath($name);
97
+    }
98 98
 
99
-	/**
100
-	 * @When /^I hover over the element "([^"]*)"$/
101
-	 */
102
-	public function iHoverOverTheElement($locator)
103
-	{
104
-		$session = $this->minkContext->getSession(); // get the mink session
105
-		$element = $session->getPage()->find('css', $locator); // runs the actual query and returns the element
99
+    /**
100
+     * @When /^I hover over the element "([^"]*)"$/
101
+     */
102
+    public function iHoverOverTheElement($locator)
103
+    {
104
+        $session = $this->minkContext->getSession(); // get the mink session
105
+        $element = $session->getPage()->find('css', $locator); // runs the actual query and returns the element
106 106
 		
107
-		// errors must not pass silently
108
-		if (null === $element) {
109
-			throw new \InvalidArgumentException(sprintf('Could not evaluate CSS selector: "%s"', $locator));
110
-		}
107
+        // errors must not pass silently
108
+        if (null === $element) {
109
+            throw new \InvalidArgumentException(sprintf('Could not evaluate CSS selector: "%s"', $locator));
110
+        }
111 111
 		
112
-		// ok, let's hover it
113
-		$element->mouseOver();
114
-	}
112
+        // ok, let's hover it
113
+        $element->mouseOver();
114
+    }
115 115
 	
116
-	/**
117
-	 * @Given /^I wait for (\d+) seconds$/
118
-	 */
119
-	public function iWaitForSecond($second)
120
-	{
121
-		sleep($second);
122
-	}
116
+    /**
117
+     * @Given /^I wait for (\d+) seconds$/
118
+     */
119
+    public function iWaitForSecond($second)
120
+    {
121
+        sleep($second);
122
+    }
123 123
 	
124
-	/**
125
-	 * @Then /^I wait for the ajax response$/
126
-	 */
127
-	public function iWaitForTheAjaxResponse()
128
-	{
129
-		$this->getSession()->wait(5000, '(0 === jQuery.active)');
130
-	}
124
+    /**
125
+     * @Then /^I wait for the ajax response$/
126
+     */
127
+    public function iWaitForTheAjaxResponse()
128
+    {
129
+        $this->getSession()->wait(5000, '(0 === jQuery.active)');
130
+    }
131 131
 	
132
-	/**
133
-	 * Some forms do not have a Submit button just pass the ID
134
-	 *
135
-	 * @Given /^I submit the form with id "([^"]*)"$/
136
-	 */
137
-	public function iSubmitTheFormWithId($arg)
138
-	{
139
-		$node = $this->minkContext->getSession()->getPage()->find('css', $arg);
140
-		if($node) {
141
-			$this->minkContext->getSession()->executeScript("jQuery('$arg').submit();");
142
-		} else {
143
-			throw new \Exception('Element not found');
144
-		}
145
-	}
132
+    /**
133
+     * Some forms do not have a Submit button just pass the ID
134
+     *
135
+     * @Given /^I submit the form with id "([^"]*)"$/
136
+     */
137
+    public function iSubmitTheFormWithId($arg)
138
+    {
139
+        $node = $this->minkContext->getSession()->getPage()->find('css', $arg);
140
+        if($node) {
141
+            $this->minkContext->getSession()->executeScript("jQuery('$arg').submit();");
142
+        } else {
143
+            throw new \Exception('Element not found');
144
+        }
145
+    }
146 146
 	
147
-	/**
148
-	 * @Then I switch to popup :name
149
-	 *
150
-	 * @param $name
151
-	 */
152
-	public function iSwitchToPopup($name)
153
-	{
154
-		$this->iSetMainWindowName();
155
-		$this->getSession()->switchToWindow($name);
156
-	}
147
+    /**
148
+     * @Then I switch to popup :name
149
+     *
150
+     * @param $name
151
+     */
152
+    public function iSwitchToPopup($name)
153
+    {
154
+        $this->iSetMainWindowName();
155
+        $this->getSession()->switchToWindow($name);
156
+    }
157 157
 	
158
-	/**
159
-	 * @Then I set main window name
160
-	 */
161
-	public function iSetMainWindowName()
162
-	{
163
-		$window_name = 'main_window';
164
-		$script = 'window.name = "' . $window_name . '"';
165
-		$this->getSession()->executeScript($script);
166
-	}
158
+    /**
159
+     * @Then I set main window name
160
+     */
161
+    public function iSetMainWindowName()
162
+    {
163
+        $window_name = 'main_window';
164
+        $script = 'window.name = "' . $window_name . '"';
165
+        $this->getSession()->executeScript($script);
166
+    }
167 167
 	
168
-	/**
169
-	 * @Then I switch back to main window
170
-	 */
171
-	public function iSwitchBackToMainWindow()
172
-	{
173
-		$this->getSession()->switchToWindow('main_window');
174
-	}
168
+    /**
169
+     * @Then I switch back to main window
170
+     */
171
+    public function iSwitchBackToMainWindow()
172
+    {
173
+        $this->getSession()->switchToWindow('main_window');
174
+    }
175 175
 	
176
-	public function iVisit($url)
177
-	{
178
-		$this->minkContext->getSession()->visit($url);
179
-	}
176
+    public function iVisit($url)
177
+    {
178
+        $this->minkContext->getSession()->visit($url);
179
+    }
180 180
 	
181
-	/**
182
-	 * @When I scroll :selector into view
183
-	 *
184
-	 * @param string $selector Allowed selectors: #id, .className, //xpath
185
-	 *
186
-	 * @throws \Exception
187
-	 */
188
-	public function scrollIntoView($selector)
189
-	{
190
-		$locator = substr($selector, 0, 1);
181
+    /**
182
+     * @When I scroll :selector into view
183
+     *
184
+     * @param string $selector Allowed selectors: #id, .className, //xpath
185
+     *
186
+     * @throws \Exception
187
+     */
188
+    public function scrollIntoView($selector)
189
+    {
190
+        $locator = substr($selector, 0, 1);
191 191
 		
192
-		switch ($locator) {
193
-			case '/' : // XPath selector
194
-				$function = <<<JS
192
+        switch ($locator) {
193
+            case '/' : // XPath selector
194
+                $function = <<<JS
195 195
 (function(){
196 196
   var elem = document.evaluate($selector, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
197 197
   elem.scrollIntoView(false);
198 198
 })()
199 199
 JS;
200
-				break;
200
+                break;
201 201
 			
202
-			case '#' : // ID selector
203
-				$selector = substr($selector, 1);
204
-				$function = <<<JS
202
+            case '#' : // ID selector
203
+                $selector = substr($selector, 1);
204
+                $function = <<<JS
205 205
 (function(){
206 206
   var elem = document.getElementById("$selector");
207 207
   elem.scrollIntoView(false);
208 208
 })()
209 209
 JS;
210
-				break;
210
+                break;
211 211
 			
212
-			case '.' : // Class selector
213
-				$selector = substr($selector, 1);
214
-				$function = <<<JS
212
+            case '.' : // Class selector
213
+                $selector = substr($selector, 1);
214
+                $function = <<<JS
215 215
 (function(){
216 216
   var elem = document.getElementsByClassName("$selector");
217 217
   elem[0].scrollIntoView(false);
218 218
 })()
219 219
 JS;
220
-				break;
220
+                break;
221 221
 			
222
-			default:
223
-				throw new \Exception(__METHOD__ . ' Couldn\'t find selector: ' . $selector . ' - Allowed selectors: #id, .className, //xpath');
224
-				break;
225
-		}
222
+            default:
223
+                throw new \Exception(__METHOD__ . ' Couldn\'t find selector: ' . $selector . ' - Allowed selectors: #id, .className, //xpath');
224
+                break;
225
+        }
226 226
 		
227
-		try {
228
-			$this->getSession()->executeScript($function);
229
-		} catch (\Exception $e) {
230
-			throw new \Exception(__METHOD__ . ' failed'. ' Message: for this locator:"'.$selector.'"');
231
-		}
232
-	}
227
+        try {
228
+            $this->getSession()->executeScript($function);
229
+        } catch (\Exception $e) {
230
+            throw new \Exception(__METHOD__ . ' failed'. ' Message: for this locator:"'.$selector.'"');
231
+        }
232
+    }
233 233
 	
234
-	/**
235
-	 * @When I click location selector
236
-	 */
237
-	public function iClickLocationSelector()
238
-	{
239
-		$locator = '#jobBase-geoLocation-span .select2';
240
-		$element = $this->getElement($locator);
241
-		$element->click();
242
-	}
234
+    /**
235
+     * @When I click location selector
236
+     */
237
+    public function iClickLocationSelector()
238
+    {
239
+        $locator = '#jobBase-geoLocation-span .select2';
240
+        $element = $this->getElement($locator);
241
+        $element->click();
242
+    }
243 243
 	
244
-	/**
245
-	 * @param $locator
246
-	 * @param string $selector
247
-	 *
248
-	 * @return \Behat\Mink\Element\NodeElement|mixed|null
249
-	 */
250
-	public function getElement($locator,$selector='css')
251
-	{
252
-		$page = $this->minkContext->getSession()->getPage();
253
-		$element = $page->find('css',$locator);
254
-		return $element;
255
-	}
244
+    /**
245
+     * @param $locator
246
+     * @param string $selector
247
+     *
248
+     * @return \Behat\Mink\Element\NodeElement|mixed|null
249
+     */
250
+    public function getElement($locator,$selector='css')
251
+    {
252
+        $page = $this->minkContext->getSession()->getPage();
253
+        $element = $page->find('css',$locator);
254
+        return $element;
255
+    }
256 256
 	
257
-	/**
258
-	 * @When I fill in location search with :term
259
-	 * @param $term
260
-	 */
261
-	public function iFillInLocationSearch($term)
262
-	{
263
-		$locator = '.select2-container--open .select2-search__field';
264
-		$element = $this->getElement($locator);
265
-		$element->focus();
266
-		$element->setValue($term);
267
-		$this->iWaitForTheAjaxResponse();
268
-	}
257
+    /**
258
+     * @When I fill in location search with :term
259
+     * @param $term
260
+     */
261
+    public function iFillInLocationSearch($term)
262
+    {
263
+        $locator = '.select2-container--open .select2-search__field';
264
+        $element = $this->getElement($locator);
265
+        $element->focus();
266
+        $element->setValue($term);
267
+        $this->iWaitForTheAjaxResponse();
268
+    }
269 269
 	
270
-	public function iClickOn()
271
-	{
270
+    public function iClickOn()
271
+    {
272 272
 	
273
-	}
273
+    }
274 274
 	
275
-	/**
276
-	 * Click some text
277
-	 *
278
-	 * @When /^I click on the text "([^"]*)"$/
279
-	 */
280
-	public function iClickOnTheText($text)
281
-	{
282
-		$session = $this->getSession();
283
-		$element = $session->getPage()->find(
284
-			'xpath',
285
-			$session->getSelectorsHandler()->selectorToXpath('xpath', '*//*[text()="'. $text .'"]')
286
-		);
287
-		if(null === $element){
288
-			$element = $session->getPage()->find(
289
-				'named',
290
-				array('id',$text)
291
-			);
292
-		}
293
-		if (null === $element) {
294
-			throw new \InvalidArgumentException(sprintf('Cannot find text: "%s"', $text));
295
-		}
275
+    /**
276
+     * Click some text
277
+     *
278
+     * @When /^I click on the text "([^"]*)"$/
279
+     */
280
+    public function iClickOnTheText($text)
281
+    {
282
+        $session = $this->getSession();
283
+        $element = $session->getPage()->find(
284
+            'xpath',
285
+            $session->getSelectorsHandler()->selectorToXpath('xpath', '*//*[text()="'. $text .'"]')
286
+        );
287
+        if(null === $element){
288
+            $element = $session->getPage()->find(
289
+                'named',
290
+                array('id',$text)
291
+            );
292
+        }
293
+        if (null === $element) {
294
+            throw new \InvalidArgumentException(sprintf('Cannot find text: "%s"', $text));
295
+        }
296 296
 		
297
-		$element->click();
297
+        $element->click();
298 298
 		
299
-	}
299
+    }
300 300
 
301 301
     /**
302 302
      * @Then /^(?:|I )should see translated text "(?P<text>(?:[^"]|\\")*)"$/
303 303
      */
304
-	public function iShouldSeeText($text)
304
+    public function iShouldSeeText($text)
305 305
     {
306 306
         $translator = $this->getServiceManager()->get('translator');
307 307
         $translated = $translator->translate($text);
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	public function setupContexts(BeforeScenarioScope $scope)
37 37
 	{
38
-		if(false === static::$jobCategoryChecked){
38
+		if (false === static::$jobCategoryChecked) {
39 39
 			/* @var Categories $catRepo */
40 40
 			$catRepo = $this->getRepositories()->get('Jobs/Category');
41 41
 			$all = $catRepo->findAll();
42
-			if(count($all) <= 1){
42
+			if (count($all) <= 1) {
43 43
 				$catRepo->createDefaultCategory('professions');
44 44
 				$catRepo->createDefaultCategory('industries');
45 45
 				$catRepo->createDefaultCategory('employmentTypes');
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function getApplication()
55 55
 	{
56
-		if(!is_object(static::$application)){
56
+		if (!is_object(static::$application)) {
57 57
 			$configFile = realpath(__DIR__.'/../../../config/config.php');
58 58
 			$config = include($configFile);
59 59
 			static::$application = Application::init($config);
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	public function iSubmitTheFormWithId($arg)
138 138
 	{
139 139
 		$node = $this->minkContext->getSession()->getPage()->find('css', $arg);
140
-		if($node) {
140
+		if ($node) {
141 141
 			$this->minkContext->getSession()->executeScript("jQuery('$arg').submit();");
142 142
 		} else {
143 143
 			throw new \Exception('Element not found');
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	public function iSetMainWindowName()
162 162
 	{
163 163
 		$window_name = 'main_window';
164
-		$script = 'window.name = "' . $window_name . '"';
164
+		$script = 'window.name = "'.$window_name.'"';
165 165
 		$this->getSession()->executeScript($script);
166 166
 	}
167 167
 	
@@ -220,14 +220,14 @@  discard block
 block discarded – undo
220 220
 				break;
221 221
 			
222 222
 			default:
223
-				throw new \Exception(__METHOD__ . ' Couldn\'t find selector: ' . $selector . ' - Allowed selectors: #id, .className, //xpath');
223
+				throw new \Exception(__METHOD__.' Couldn\'t find selector: '.$selector.' - Allowed selectors: #id, .className, //xpath');
224 224
 				break;
225 225
 		}
226 226
 		
227 227
 		try {
228 228
 			$this->getSession()->executeScript($function);
229 229
 		} catch (\Exception $e) {
230
-			throw new \Exception(__METHOD__ . ' failed'. ' Message: for this locator:"'.$selector.'"');
230
+			throw new \Exception(__METHOD__.' failed'.' Message: for this locator:"'.$selector.'"');
231 231
 		}
232 232
 	}
233 233
 	
@@ -247,10 +247,10 @@  discard block
 block discarded – undo
247 247
 	 *
248 248
 	 * @return \Behat\Mink\Element\NodeElement|mixed|null
249 249
 	 */
250
-	public function getElement($locator,$selector='css')
250
+	public function getElement($locator, $selector = 'css')
251 251
 	{
252 252
 		$page = $this->minkContext->getSession()->getPage();
253
-		$element = $page->find('css',$locator);
253
+		$element = $page->find('css', $locator);
254 254
 		return $element;
255 255
 	}
256 256
 	
@@ -282,12 +282,12 @@  discard block
 block discarded – undo
282 282
 		$session = $this->getSession();
283 283
 		$element = $session->getPage()->find(
284 284
 			'xpath',
285
-			$session->getSelectorsHandler()->selectorToXpath('xpath', '*//*[text()="'. $text .'"]')
285
+			$session->getSelectorsHandler()->selectorToXpath('xpath', '*//*[text()="'.$text.'"]')
286 286
 		);
287
-		if(null === $element){
287
+		if (null === $element) {
288 288
 			$element = $session->getPage()->find(
289 289
 				'named',
290
-				array('id',$text)
290
+				array('id', $text)
291 291
 			);
292 292
 		}
293 293
 		if (null === $element) {
Please login to merge, or discard this patch.