update dependencies
Some checks failed
/ ls (pull_request) Failing after 2m43s

This commit is contained in:
Jonas 2024-12-18 14:20:50 +01:00
parent ee5d515ac1
commit 8c783d780c
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
2 changed files with 620 additions and 611 deletions

1229
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -44,7 +44,7 @@ final class FoodOrderController extends AbstractController
$prevPage = $page - 1;
$itemsPerPage = 10;
$count = $foodOrderRepository->count();
if($count < $page * $itemsPerPage) {
if ($count < $page * $itemsPerPage) {
$nextPage = $page;
}