@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * @var String |
| 36 | 36 | * @ODM\String |
| 37 | 37 | */ |
| 38 | - protected $qualifications=''; |
|
| 38 | + protected $qualifications = ''; |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * Requirements field of the job template |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @var String |
| 44 | 44 | * @ODM\String |
| 45 | 45 | */ |
| 46 | - protected $requirements=''; |
|
| 46 | + protected $requirements = ''; |
|
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * Benefits field of the job template |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | * @var String |
| 52 | 52 | * @ODM\String |
| 53 | 53 | */ |
| 54 | - protected $benefits=''; |
|
| 54 | + protected $benefits = ''; |
|
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * Job title field of the job template |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @var String |
| 60 | 60 | * @ODM\String |
| 61 | 61 | */ |
| 62 | - protected $title=''; |
|
| 62 | + protected $title = ''; |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | 65 | * Company description field of the job template |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * @var String |
| 68 | 68 | * @ODM\String |
| 69 | 69 | */ |
| 70 | - protected $description=''; |
|
| 70 | + protected $description = ''; |
|
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * language of the job template values. Must be a valid ISO 639-1 code |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @var String |
| 76 | 76 | * @ODM\String |
| 77 | 77 | */ |
| 78 | - protected $language='en'; |
|
| 78 | + protected $language = 'en'; |
|
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | 81 | * free values (currently not in use) |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function setQualifications($qualifications) |
| 94 | 94 | { |
| 95 | - $this->qualifications= (string) $qualifications; |
|
| 95 | + $this->qualifications = (string) $qualifications; |
|
| 96 | 96 | return $this; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function setRequirements($requirements) |
| 116 | 116 | { |
| 117 | - $this->requirements=(string) $requirements; |
|
| 117 | + $this->requirements = (string) $requirements; |
|
| 118 | 118 | return $this; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | public function setBenefits($benefits) |
| 138 | 138 | { |
| 139 | - $this->benefits=(string) $benefits; |
|
| 139 | + $this->benefits = (string) $benefits; |
|
| 140 | 140 | return $this; |
| 141 | 141 | } |
| 142 | 142 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | */ |
| 159 | 159 | public function setTitle($title) |
| 160 | 160 | { |
| 161 | - $this->title=(string) $title; |
|
| 161 | + $this->title = (string) $title; |
|
| 162 | 162 | return $this; |
| 163 | 163 | } |
| 164 | 164 | |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | public function setDescription($description) |
| 182 | 182 | { |
| 183 | - $this->description=(string) $description; |
|
| 183 | + $this->description = (string) $description; |
|
| 184 | 184 | return $this; |
| 185 | 185 | } |
| 186 | 186 | |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | */ |
| 203 | 203 | public function setLanguage($language) |
| 204 | 204 | { |
| 205 | - $this->language=(string) $language; |
|
| 205 | + $this->language = (string) $language; |
|
| 206 | 206 | return $this; |
| 207 | 207 | } |
| 208 | 208 | |