diff --git a/src/Entity/Place.php b/src/Entity/Place.php index ec2ff5a..bf5cdf7 100644 --- a/src/Entity/Place.php +++ b/src/Entity/Place.php @@ -71,7 +71,7 @@ class Place } public function setType(string $type): bool { - if ($type == 'C' or $type == 'S' or $type == 'E' or $type == 'R') { + if ($type == 'C' or $type == 'S' or $type == 'L' or $type == 'R') { $this->type = $type; return true; }