Skip to content
Snippets Groups Projects
Commit b4a4dff8 authored by Tim Wagner's avatar Tim Wagner
Browse files

[TASK] Add employment types to Job domain model

parent d1d2cc62
No related branches found
No related tags found
1 merge request!20[FEATURE] Extended TCAs for Structured Data (SEO)
......@@ -102,6 +102,11 @@ class Job extends AbstractEntity {
*/
protected $contact;
/**
* @var string $employmentTypes
*/
protected $employmentTypes = '';
/**
* @return string
*/
......@@ -298,4 +303,17 @@ class Job extends AbstractEntity {
$this->sorting = $sorting;
}
/**
* @return string
*/
public function getEmploymentTypes(): string {
return $this->employmentTypes;
}
/**
* @param string $employmentTypes
*/
public function setEmploymentTypes(string $employmentTypes): void {
$this->employmentTypes = $employmentTypes;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment