Skip to content
Snippets Groups Projects
Commit e5f39078 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Fix birthday (validated to an int)

parent b762bd08
No related branches found
No related tags found
No related merge requests found
......@@ -287,17 +287,17 @@ class JobApplication extends AbstractEntity {
}
/**
* @return int
* @return string
*/
public function getBirthDate() {
return $this->birthDate;
}
/**
* @param int $birthDate
* @param string $birthDate
*/
public function setBirthDate($birthDate) {
$this->birthDate = (int) $birthDate;
$this->birthDate = $birthDate;
}
/**
......
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