Passed
Pull Request — master (#580)
by ANTHONIUS
10:05
created
module/Jobs/test/JobsTest/Factory/JobEventManagerFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@
 block discarded – undo
49 49
         $expectedIdentifiers = array('Jobs', 'Jobs/Events');
50 50
         $eventManager = new EventManager();
51 51
         $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
52
-                         ->disableOriginalConstructor()
53
-                         ->getMock();
52
+                            ->disableOriginalConstructor()
53
+                            ->getMock();
54 54
 
55 55
         $services->expects($this->once())->method('get')->with('EventManager')->willReturn($eventManager);
56 56
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Factory/Model/ApiJobDehydratorFactoryTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,12 +57,12 @@
 block discarded – undo
57 57
                 ->willReturn($urlHelper);
58 58
 
59 59
         $serviceManagerMock = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
60
-                                   ->disableOriginalConstructor()
61
-                                   ->getMock();
60
+                                    ->disableOriginalConstructor()
61
+                                    ->getMock();
62 62
 
63 63
         $serviceManagerMock->expects($this->once())->method('get')
64
-                           ->with('ViewHelperManager')
65
-                           ->willReturn($helpers);
64
+                            ->with('ViewHelperManager')
65
+                            ->willReturn($helpers);
66 66
 
67 67
         $service = $target->__invoke($serviceManagerMock, 'irrelevant');
68 68
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Factory/ModuleOptionsFactoryTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,16 +24,16 @@
 block discarded – undo
24 24
     public function testFactory($config)
25 25
     {
26 26
         $serviceManager = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
27
-                               ->disableOriginalConstructor()->getMock();
27
+                                ->disableOriginalConstructor()->getMock();
28 28
 
29 29
 
30 30
 
31 31
         if (isset($config['core_options'])) {
32 32
             $coreOptions = new \Core\Options\ModuleOptions($config['core_options']);
33 33
             $serviceManager->expects($this->exactly(2))
34
-                           ->method('get')
35
-                           ->withConsecutive(array('Config'), array('Core/Options'))
36
-                           ->will($this->onConsecutiveCalls($config, $coreOptions));
34
+                            ->method('get')
35
+                            ->withConsecutive(array('Config'), array('Core/Options'))
36
+                            ->will($this->onConsecutiveCalls($config, $coreOptions));
37 37
         } else {
38 38
             $serviceManager->expects($this->once())->method('get')->with('Config')->willReturn($config);
39 39
         }
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Factory/Listener/MailSenderFactoryTest.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -45,17 +45,17 @@
 block discarded – undo
45 45
         ));
46 46
 
47 47
         $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
48
-                         ->disableOriginalConstructor()
49
-                         ->getMock();
48
+                            ->disableOriginalConstructor()
49
+                            ->getMock();
50 50
 
51 51
         $services->expects($this->exactly(3))
52
-                 ->method('get')
53
-                 ->withConsecutive(
54
-                     array('Core/MailService'),
55
-                     array('Jobs/Options'),
56
-                     array('Core/Options')
57
-                 )
58
-                 ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions));
52
+                    ->method('get')
53
+                    ->withConsecutive(
54
+                        array('Core/MailService'),
55
+                        array('Jobs/Options'),
56
+                        array('Core/Options')
57
+                    )
58
+                    ->will($this->onConsecutiveCalls($mailService, $jobsOptions, $coreOptions));
59 59
 
60 60
         $expectedOptions = array(
61 61
             'siteName' => $coreOptions->getSiteName(),
Please login to merge, or discard this patch.
Jobs/test/JobsTest/Factory/Form/MultipostingMultiCheckboxFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,10 +52,10 @@
 block discarded – undo
52 52
     {
53 53
         $select = $this->getMockBuilder('Jobs\Form\MultipostingSelect')->disableOriginalConstructor()->getMock();
54 54
         $select->expects($this->once())
55
-               ->method('setViewPartial')->with('jobs/form/multiposting-checkboxes');
55
+                ->method('setViewPartial')->with('jobs/form/multiposting-checkboxes');
56 56
 
57 57
         $select->expects($this->once())
58
-               ->method('setHeadscripts')->with(array('modules/Jobs/js/form.multiposting-checkboxes.js'));
58
+                ->method('setHeadscripts')->with(array('modules/Jobs/js/form.multiposting-checkboxes.js'));
59 59
 
60 60
         $factory = $this->getMockBuilder('\Laminas\ServiceManager\FactoryInterface')
61 61
                         ->setMethods(array('__invoke'))
Please login to merge, or discard this patch.
Jobs/test/JobsTest/Factory/Form/HiringOrganizationSelectFactoryTest.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -78,21 +78,21 @@
 block discarded – undo
78 78
         $this->user = $user;
79 79
 
80 80
         $auth = $this->getMockBuilder('Auth\AuthenticationService')
81
-                     ->disableOriginalConstructor()
82
-                     ->getMock();
81
+                        ->disableOriginalConstructor()
82
+                        ->getMock();
83 83
 
84 84
         $auth->expects($this->once())
85
-             ->method('getUser')
86
-             ->willReturn($user);
85
+                ->method('getUser')
86
+                ->willReturn($user);
87 87
 
88 88
         $services = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
89
-                         ->disableOriginalConstructor()
90
-                         ->getMock();
89
+                            ->disableOriginalConstructor()
90
+                            ->getMock();
91 91
 
92 92
         $services->expects($this->once())
93
-                 ->method('get')
94
-                 ->with('AuthenticationService')
95
-                 ->willReturn($auth);
93
+                    ->method('get')
94
+                    ->with('AuthenticationService')
95
+                    ->willReturn($auth);
96 96
         
97 97
         $this->services = $services;
98 98
     }
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Factory/Filter/ChannelPricesFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
         $provider=new ProviderOptions();
44 44
 
45 45
         $serviceManagerMock = $this->getMockBuilder('\Laminas\ServiceManager\ServiceManager')
46
-                                   ->disableOriginalConstructor()
47
-                                   ->getMock();
46
+                                    ->disableOriginalConstructor()
47
+                                    ->getMock();
48 48
 
49 49
 
50 50
         $serviceManagerMock
Please login to merge, or discard this patch.
module/Cv/src/Form/SearchForm.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -33,44 +33,44 @@
 block discarded – undo
33 33
     protected function addElements()
34 34
     {
35 35
         $this->add(
36
-             [
37
-                 'name' => 'l',
38
-                 'type' => 'LocationSelect',
39
-                 'options' => [
40
-                     'label' => /*@translate*/ 'Location',
41
-                     'span' => 3,
42
-                     'location_entity' => Location::class,
43
-                 ],
44
-                 'attributes' => [
45
-                     'data-width' => '100%',
46
-                 ],
47
-             ]
36
+                [
37
+                    'name' => 'l',
38
+                    'type' => 'LocationSelect',
39
+                    'options' => [
40
+                        'label' => /*@translate*/ 'Location',
41
+                        'span' => 3,
42
+                        'location_entity' => Location::class,
43
+                    ],
44
+                    'attributes' => [
45
+                        'data-width' => '100%',
46
+                    ],
47
+                ]
48 48
         );
49 49
 
50 50
         $this->add(
51
-             [
52
-                 'name' => 'd',
53
-                 'type' => 'Core\Form\Element\Select', //Laminas\Form\Element\Select
54
-                 'options' => [
55
-                     'label' => /*@translate*/ 'Distance',
56
-                     'value_options' => [
57
-                         '5' => '5 km',
58
-                         '10' => '10 km',
59
-                         '20' => '20 km',
60
-                         '50' => '50 km',
61
-                         '100' => '100 km'
62
-                     ],
63
-                     'span' => 4,
51
+                [
52
+                    'name' => 'd',
53
+                    'type' => 'Core\Form\Element\Select', //Laminas\Form\Element\Select
54
+                    'options' => [
55
+                        'label' => /*@translate*/ 'Distance',
56
+                        'value_options' => [
57
+                            '5' => '5 km',
58
+                            '10' => '10 km',
59
+                            '20' => '20 km',
60
+                            '50' => '50 km',
61
+                            '100' => '100 km'
62
+                        ],
63
+                        'span' => 4,
64 64
 
65
-                 ],
66
-                 'attributes' => [
67
-                     'value' => '10', // default distance
68
-                     'data-searchbox' => -1,  // hide the search box
69
-                     'data-allowclear' => 'false', // allow to clear a selected value
70
-                     'data-placeholder' => /*@translate*/ 'Distance',
71
-                     'data-width' => '100%',
72
-                 ]
73
-             ]
65
+                    ],
66
+                    'attributes' => [
67
+                        'value' => '10', // default distance
68
+                        'data-searchbox' => -1,  // hide the search box
69
+                        'data-allowclear' => 'false', // allow to clear a selected value
70
+                        'data-placeholder' => /*@translate*/ 'Distance',
71
+                        'data-width' => '100%',
72
+                    ]
73
+                ]
74 74
         );
75 75
     }
76 76
 }
Please login to merge, or discard this patch.
module/Cv/test/CvTest/Form/EducationFieldsetTest.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -78,61 +78,61 @@
 block discarded – undo
78 78
                 ]
79 79
             ],
80 80
             [
81
-                 'type' => 'Core/Datepicker',
82
-                 'name' => 'endDate',
83
-                 'options' => [
84
-                     'label' => 'End date'
85
-                 ],
81
+                    'type' => 'Core/Datepicker',
82
+                    'name' => 'endDate',
83
+                    'options' => [
84
+                        'label' => 'End date'
85
+                    ],
86 86
             ],
87
-             [
88
-                 'type' => 'checkbox',
89
-                 'name' => 'currentIndicator',
90
-                 'options' => [
91
-                     'label' => 'ongoing'
92
-                 ]
93
-             ],
94
-             [
95
-                 'name' => 'competencyName',
96
-                 'options' => [
97
-                     'label' => 'Degree'],
98
-                 'attributes' => [
99
-                     'title' =>  'please enter the name of your qualification'
100
-                 ],
101
-             ],
102
-             [
103
-                 'name' => 'organizationName',
104
-                 'options' => [
105
-                     'label' => 'Organization Name'],
106
-                 'attributes' => [
107
-                     'title' =>  'please enter the name of the university or school'
108
-                 ],
109
-             ],
87
+                [
88
+                    'type' => 'checkbox',
89
+                    'name' => 'currentIndicator',
90
+                    'options' => [
91
+                        'label' => 'ongoing'
92
+                    ]
93
+                ],
94
+                [
95
+                    'name' => 'competencyName',
96
+                    'options' => [
97
+                        'label' => 'Degree'],
98
+                    'attributes' => [
99
+                        'title' =>  'please enter the name of your qualification'
100
+                    ],
101
+                ],
102
+                [
103
+                    'name' => 'organizationName',
104
+                    'options' => [
105
+                        'label' => 'Organization Name'],
106
+                    'attributes' => [
107
+                        'title' =>  'please enter the name of the university or school'
108
+                    ],
109
+                ],
110 110
             [
111
-                 'name' => 'country',
112
-                 'options' => [
113
-                     'label' => 'Country'],
114
-                 'attributes' => [
115
-                     'title' => /*@translate */ 'please select the country'
116
-                 ],
117
-             ],
118
-             [
119
-                 'name' => 'city',
120
-                 'options' => [
121
-                     'label' => 'City'],
122
-                 'attributes' => [
123
-                     'title' => 'please enter the name of the city'
124
-                 ],
125
-             ],
126
-             [
127
-                 'name' => 'description',
128
-                 'type' => 'Laminas\Form\Element\Textarea',
129
-                 'options' => [
130
-                     'label' => 'Description',
131
-                 ],
132
-                 'attributes' => [
133
-                     'title' => 'please enter a description',
134
-                 ],
135
-             ],
111
+                    'name' => 'country',
112
+                    'options' => [
113
+                        'label' => 'Country'],
114
+                    'attributes' => [
115
+                        'title' => /*@translate */ 'please select the country'
116
+                    ],
117
+                ],
118
+                [
119
+                    'name' => 'city',
120
+                    'options' => [
121
+                        'label' => 'City'],
122
+                    'attributes' => [
123
+                        'title' => 'please enter the name of the city'
124
+                    ],
125
+                ],
126
+                [
127
+                    'name' => 'description',
128
+                    'type' => 'Laminas\Form\Element\Textarea',
129
+                    'options' => [
130
+                        'label' => 'Description',
131
+                    ],
132
+                    'attributes' => [
133
+                        'title' => 'please enter a description',
134
+                    ],
135
+                ],
136 136
         ];
137 137
 
138 138
         $addArgValidator = function ($arg) use ($add) {
Please login to merge, or discard this patch.