wip: transportation services with discount

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 84f4481ef0
commit ed7c889c4f
3 changed files with 9 additions and 9 deletions
-1
View File
@@ -151,7 +151,6 @@ class Travel
{
$services = array_filter($this->transportationServices, function (Service $service) use ($direction, $filterAvailable) {
return $direction === $service->direction
&& $service->price >= 0
&& (false === $filterAvailable || $service->available > 0 || null === $service->available);
});