@@ -43,7 +43,7 @@ |
||
43 | 43 | 'mock' => ['setName' => ['with' => 'cv-form', 'count' => 1], 'setForms'], |
44 | 44 | ], |
45 | 45 | '@testSetsIdParamWhenEntityIsSet' => [ |
46 | - 'mock' => [ 'setParam' ], |
|
46 | + 'mock' => ['setParam'], |
|
47 | 47 | ], |
48 | 48 | ]; |
49 | 49 |
@@ -36,7 +36,7 @@ |
||
36 | 36 | 'mock' => [ |
37 | 37 | 'setName' => ['with' => 'skill', 'count' => 1, 'return' => '__self__'], |
38 | 38 | 'setLabel' => ['with' => 'Languages', 'count' => 1, 'return' => '__self__'], |
39 | - 'setObject' => [ '@with' => ['isInstanceOf', Skill::class], 'count' => 1], |
|
39 | + 'setObject' => ['@with' => ['isInstanceOf', Skill::class], 'count' => 1], |
|
40 | 40 | 'add' |
41 | 41 | ], |
42 | 42 | ], |
@@ -39,15 +39,15 @@ discard block |
||
39 | 39 | 'mock' => [ |
40 | 40 | 'add', |
41 | 41 | 'setName' => ['with' => 'language', 'count' => 1, 'return' => '__self__'], |
42 | - 'setHydrator' => ['@with' => ['isInstanceOf', EntityHydrator::class ], 'count' => 1, 'return' => '__self__'], |
|
43 | - 'setObject' => ['@with' => ['isInstanceOf', Language::class ], 'count' => 1, 'return' => '__self__'], |
|
42 | + 'setHydrator' => ['@with' => ['isInstanceOf', EntityHydrator::class], 'count' => 1, 'return' => '__self__'], |
|
43 | + 'setObject' => ['@with' => ['isInstanceOf', Language::class], 'count' => 1, 'return' => '__self__'], |
|
44 | 44 | 'setLabel' => ['with' => 'Language', 'count' => 1] |
45 | 45 | ], |
46 | 46 | 'args' => false, |
47 | 47 | ], |
48 | 48 | ]; |
49 | 49 | |
50 | - private $inheritance = [ Fieldset::class ]; |
|
50 | + private $inheritance = [Fieldset::class]; |
|
51 | 51 | |
52 | 52 | public function testInitializesItself() |
53 | 53 | { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | |
105 | 105 | $callCount = count($add); |
106 | 106 | |
107 | - $arrayContainsPairs = function ($expected, $actual) use (&$arrayContainsPairs) { |
|
107 | + $arrayContainsPairs = function($expected, $actual) use (&$arrayContainsPairs) { |
|
108 | 108 | foreach ($expected as $key => $value) { |
109 | 109 | if (!array_key_exists($key, $actual)) { |
110 | 110 | return false; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | }; |
120 | 120 | |
121 | 121 | |
122 | - $addArgValidator = function ($arg) use ($add, $callCount, $arrayContainsPairs) { |
|
122 | + $addArgValidator = function($arg) use ($add, $callCount, $arrayContainsPairs) { |
|
123 | 123 | static $count = 0; |
124 | 124 | |
125 | 125 | /* PPHUnit calls this callback again after all invokations are made |
@@ -65,41 +65,41 @@ |
||
65 | 65 | ['cv-list-filter'] |
66 | 66 | ); |
67 | 67 | $add1 = [ |
68 | - 'name' => 'l', |
|
69 | - 'type' => 'LocationSelect', |
|
70 | - 'options' => [ |
|
71 | - 'label' => 'Location', |
|
72 | - 'span' => 3, |
|
73 | - 'location_entity' => \Cv\Entity\Location::class, |
|
74 | - ], |
|
75 | - 'attributes' => [ |
|
76 | - 'data-width' => '100%', |
|
77 | - ], |
|
78 | - ]; |
|
68 | + 'name' => 'l', |
|
69 | + 'type' => 'LocationSelect', |
|
70 | + 'options' => [ |
|
71 | + 'label' => 'Location', |
|
72 | + 'span' => 3, |
|
73 | + 'location_entity' => \Cv\Entity\Location::class, |
|
74 | + ], |
|
75 | + 'attributes' => [ |
|
76 | + 'data-width' => '100%', |
|
77 | + ], |
|
78 | + ]; |
|
79 | 79 | |
80 | 80 | $add2 = [ |
81 | - 'name' => 'd', |
|
82 | - 'type' => 'Core\Form\Element\Select', |
|
83 | - 'options' => [ |
|
84 | - 'label' => /*@translate*/ 'Distance', |
|
85 | - 'value_options' => [ |
|
86 | - '5' => '5 km', |
|
87 | - '10' => '10 km', |
|
88 | - '20' => '20 km', |
|
89 | - '50' => '50 km', |
|
90 | - '100' => '100 km' |
|
91 | - ], |
|
92 | - 'span' => 4, |
|
81 | + 'name' => 'd', |
|
82 | + 'type' => 'Core\Form\Element\Select', |
|
83 | + 'options' => [ |
|
84 | + 'label' => /*@translate*/ 'Distance', |
|
85 | + 'value_options' => [ |
|
86 | + '5' => '5 km', |
|
87 | + '10' => '10 km', |
|
88 | + '20' => '20 km', |
|
89 | + '50' => '50 km', |
|
90 | + '100' => '100 km' |
|
91 | + ], |
|
92 | + 'span' => 4, |
|
93 | 93 | |
94 | - ], |
|
95 | - 'attributes' => [ |
|
96 | - 'value' => '10', |
|
97 | - 'data-searchbox' => -1, |
|
98 | - 'data-allowclear' => 'false', |
|
99 | - 'data-placeholder' => 'Distance', |
|
100 | - 'data-width' => '100%', |
|
101 | - ] |
|
102 | - ]; |
|
94 | + ], |
|
95 | + 'attributes' => [ |
|
96 | + 'value' => '10', |
|
97 | + 'data-searchbox' => -1, |
|
98 | + 'data-allowclear' => 'false', |
|
99 | + 'data-placeholder' => 'Distance', |
|
100 | + 'data-width' => '100%', |
|
101 | + ] |
|
102 | + ]; |
|
103 | 103 | |
104 | 104 | $this->target->expects($this->exactly(2))->method('add') |
105 | 105 | ->withConsecutive( |
@@ -48,7 +48,7 @@ |
||
48 | 48 | ], |
49 | 49 | ]; |
50 | 50 | |
51 | - private $inheritance = [ \Core\Form\SearchForm::class ]; |
|
51 | + private $inheritance = [\Core\Form\SearchForm::class]; |
|
52 | 52 | |
53 | 53 | public function testInitializesItself() |
54 | 54 | { |
@@ -35,17 +35,17 @@ |
||
35 | 35 | private $target = [ |
36 | 36 | Employment::class, |
37 | 37 | '@testSetData' => [ |
38 | - 'mock' => [ 'add', 'populate' /* is called in parent method */ ] |
|
38 | + 'mock' => ['add', 'populate' /* is called in parent method */] |
|
39 | 39 | ] |
40 | 40 | ]; |
41 | 41 | |
42 | - private $inheritance = [ InputFilter::class ]; |
|
42 | + private $inheritance = [InputFilter::class]; |
|
43 | 43 | |
44 | 44 | public function provideFilterData() |
45 | 45 | { |
46 | 46 | return [ |
47 | - [ ['currentIndicator' => true ] ], |
|
48 | - [ ['currentIndicator' => false ] ] |
|
47 | + [['currentIndicator' => true]], |
|
48 | + [['currentIndicator' => false]] |
|
49 | 49 | ]; |
50 | 50 | } |
51 | 51 |
@@ -35,17 +35,17 @@ |
||
35 | 35 | private $target = [ |
36 | 36 | Education::class, |
37 | 37 | '@testSetData' => [ |
38 | - 'mock' => [ 'add', 'populate' /* is called in parent method */ ] |
|
38 | + 'mock' => ['add', 'populate' /* is called in parent method */] |
|
39 | 39 | ] |
40 | 40 | ]; |
41 | 41 | |
42 | - private $inheritance = [ InputFilter::class ]; |
|
42 | + private $inheritance = [InputFilter::class]; |
|
43 | 43 | |
44 | 44 | public function provideFilterData() |
45 | 45 | { |
46 | 46 | return [ |
47 | - [ ['currentIndicator' => true ] ], |
|
48 | - [ ['currentIndicator' => false ] ] |
|
47 | + [['currentIndicator' => true]], |
|
48 | + [['currentIndicator' => false]] |
|
49 | 49 | ]; |
50 | 50 | } |
51 | 51 |
@@ -77,61 +77,61 @@ |
||
77 | 77 | ] |
78 | 78 | ], |
79 | 79 | [ |
80 | - 'type' => 'Core/Datepicker', |
|
81 | - 'name' => 'endDate', |
|
82 | - 'options' => [ |
|
83 | - 'label' => 'End date' |
|
84 | - ], |
|
80 | + 'type' => 'Core/Datepicker', |
|
81 | + 'name' => 'endDate', |
|
82 | + 'options' => [ |
|
83 | + 'label' => 'End date' |
|
84 | + ], |
|
85 | 85 | ], |
86 | - [ |
|
87 | - 'type' => 'checkbox', |
|
88 | - 'name' => 'currentIndicator', |
|
89 | - 'options' => [ |
|
90 | - 'label' => 'ongoing' |
|
91 | - ] |
|
92 | - ], |
|
93 | - [ |
|
94 | - 'name' => 'competencyName', |
|
95 | - 'options' => [ |
|
96 | - 'label' => 'Degree'], |
|
97 | - 'attributes' => [ |
|
98 | - 'title' => 'please enter the name of your qualification' |
|
99 | - ], |
|
100 | - ], |
|
101 | - [ |
|
102 | - 'name' => 'organizationName', |
|
103 | - 'options' => [ |
|
104 | - 'label' => 'Organization Name'], |
|
105 | - 'attributes' => [ |
|
106 | - 'title' => 'please enter the name of the university or school' |
|
107 | - ], |
|
108 | - ], |
|
86 | + [ |
|
87 | + 'type' => 'checkbox', |
|
88 | + 'name' => 'currentIndicator', |
|
89 | + 'options' => [ |
|
90 | + 'label' => 'ongoing' |
|
91 | + ] |
|
92 | + ], |
|
93 | + [ |
|
94 | + 'name' => 'competencyName', |
|
95 | + 'options' => [ |
|
96 | + 'label' => 'Degree'], |
|
97 | + 'attributes' => [ |
|
98 | + 'title' => 'please enter the name of your qualification' |
|
99 | + ], |
|
100 | + ], |
|
101 | + [ |
|
102 | + 'name' => 'organizationName', |
|
103 | + 'options' => [ |
|
104 | + 'label' => 'Organization Name'], |
|
105 | + 'attributes' => [ |
|
106 | + 'title' => 'please enter the name of the university or school' |
|
107 | + ], |
|
108 | + ], |
|
109 | 109 | [ |
110 | - 'name' => 'country', |
|
111 | - 'options' => [ |
|
112 | - 'label' => 'Country'], |
|
113 | - 'attributes' => [ |
|
114 | - 'title' => /*@translate */ 'please select the country' |
|
115 | - ], |
|
116 | - ], |
|
117 | - [ |
|
118 | - 'name' => 'city', |
|
119 | - 'options' => [ |
|
120 | - 'label' => 'City'], |
|
121 | - 'attributes' => [ |
|
122 | - 'title' => 'please enter the name of the city' |
|
123 | - ], |
|
124 | - ], |
|
125 | - [ |
|
126 | - 'name' => 'description', |
|
127 | - 'type' => 'Zend\Form\Element\Textarea', |
|
128 | - 'options' => [ |
|
129 | - 'label' => 'Description', |
|
130 | - ], |
|
131 | - 'attributes' => [ |
|
132 | - 'title' => 'please enter a description', |
|
133 | - ], |
|
134 | - ], |
|
110 | + 'name' => 'country', |
|
111 | + 'options' => [ |
|
112 | + 'label' => 'Country'], |
|
113 | + 'attributes' => [ |
|
114 | + 'title' => /*@translate */ 'please select the country' |
|
115 | + ], |
|
116 | + ], |
|
117 | + [ |
|
118 | + 'name' => 'city', |
|
119 | + 'options' => [ |
|
120 | + 'label' => 'City'], |
|
121 | + 'attributes' => [ |
|
122 | + 'title' => 'please enter the name of the city' |
|
123 | + ], |
|
124 | + ], |
|
125 | + [ |
|
126 | + 'name' => 'description', |
|
127 | + 'type' => 'Zend\Form\Element\Textarea', |
|
128 | + 'options' => [ |
|
129 | + 'label' => 'Description', |
|
130 | + ], |
|
131 | + 'attributes' => [ |
|
132 | + 'title' => 'please enter a description', |
|
133 | + ], |
|
134 | + ], |
|
135 | 135 | ]; |
136 | 136 | |
137 | 137 | $addArgValidator = function($arg) use ($add) { |
@@ -46,19 +46,19 @@ discard block |
||
46 | 46 | 'mock' => [ |
47 | 47 | 'add', |
48 | 48 | 'setName' => ['with' => 'education', 'count' => 1, 'return' => '__self__'], |
49 | - 'setHydrator' => ['@with' => ['isInstanceOf', EntityHydrator::class ], 'count' => 1, 'return' => '__self__'], |
|
50 | - 'setObject' => ['@with' => ['isInstanceOf', Education::class ], 'count' => 1, 'return' => '__self__'], |
|
49 | + 'setHydrator' => ['@with' => ['isInstanceOf', EntityHydrator::class], 'count' => 1, 'return' => '__self__'], |
|
50 | + 'setObject' => ['@with' => ['isInstanceOf', Education::class], 'count' => 1, 'return' => '__self__'], |
|
51 | 51 | ], |
52 | 52 | 'args' => false, |
53 | 53 | ], |
54 | 54 | '@testPopulateValues' => [ |
55 | - 'mock' => [ 'get' ], |
|
55 | + 'mock' => ['get'], |
|
56 | 56 | ], |
57 | 57 | ]; |
58 | 58 | |
59 | - private $inheritance = [ Fieldset::class, InputFilterProviderInterface::class, ViewPartialProviderInterface::class ]; |
|
59 | + private $inheritance = [Fieldset::class, InputFilterProviderInterface::class, ViewPartialProviderInterface::class]; |
|
60 | 60 | |
61 | - private $traits = [ ViewPartialProviderTrait::class ]; |
|
61 | + private $traits = [ViewPartialProviderTrait::class]; |
|
62 | 62 | |
63 | 63 | private $attributes = [ |
64 | 64 | 'defaultPartial' => 'cv/form/education', |
@@ -162,11 +162,11 @@ discard block |
||
162 | 162 | public function populateValuesDataProvider() |
163 | 163 | { |
164 | 164 | return [ |
165 | - [ [ ], false ], |
|
166 | - [ ['currentIndicator'=>true], false ], |
|
167 | - [ ['currentIndicator' => false, 'endDate' => 'endDate' ], false ], |
|
168 | - [ ['endDate' => 'endDate'], false ], |
|
169 | - [ ['currentIndicator' => true, 'endDate' => 'endDate'], true ], |
|
165 | + [[], false], |
|
166 | + [['currentIndicator'=>true], false], |
|
167 | + [['currentIndicator' => false, 'endDate' => 'endDate'], false], |
|
168 | + [['endDate' => 'endDate'], false], |
|
169 | + [['currentIndicator' => true, 'endDate' => 'endDate'], true], |
|
170 | 170 | ]; |
171 | 171 | } |
172 | 172 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | |
30 | 30 | private $target = NativeLanguageForm::class; |
31 | 31 | |
32 | - private $inheritance = [ SummaryForm::class ]; |
|
32 | + private $inheritance = [SummaryForm::class]; |
|
33 | 33 | |
34 | 34 | private $attributes = [ |
35 | 35 | 'baseFieldset' => 'Cv/NativeLanguageFieldset' |
@@ -42,7 +42,7 @@ |
||
42 | 42 | ], |
43 | 43 | ]; |
44 | 44 | |
45 | - private $inheritance = [ SummaryForm::class ]; |
|
45 | + private $inheritance = [SummaryForm::class]; |
|
46 | 46 | |
47 | 47 | private $attributes = [ |
48 | 48 | 'baseFieldset' => PreferredJobFieldset::class, |