update dependencies #67

Merged
lubiana merged 2 commits from update-dependencies into main 2024-12-18 22:48:04 +00:00
2 changed files with 620 additions and 611 deletions
Showing only changes of commit 8c783d780c - Show all commits

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;
}