From 366cef7a0a1d2e4368c312296c9df2ac25bc0a0c Mon Sep 17 00:00:00 2001 From: Kouril42 Date: Tue, 21 Feb 2023 16:23:11 +0100 Subject: [PATCH] Change Eleveator to Lift --- src/Entity/Place.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }