Compare commits

..

2 commits

Author SHA1 Message Date
a974688872
update workflow image
All checks were successful
/ ls (pull_request) Successful in 2m21s
/ ls (push) Successful in 2m21s
2024-12-18 14:30:24 +01:00
8c783d780c
update dependencies
Some checks failed
/ ls (pull_request) Failing after 2m43s
2024-12-18 14:21:34 +01:00
5 changed files with 623 additions and 614 deletions

View file

@ -3,7 +3,7 @@ jobs:
ls: ls:
runs-on: docker runs-on: docker
container: container:
image: git.php.fail/lubiana/container/php:ci image: git.php.fail/lubiana/container/php:8.4.1-ci
steps: steps:
- name: Manually checkout - name: Manually checkout
env: env:

View file

@ -6,7 +6,7 @@ jobs:
ls: ls:
runs-on: docker runs-on: docker
container: container:
image: git.php.fail/lubiana/container/php:ci image: git.php.fail/lubiana/container/php:8.4.1-ci
steps: steps:
- name: Manually checkout - name: Manually checkout
env: env:

View file

@ -4,7 +4,7 @@ jobs:
ls: ls:
runs-on: docker runs-on: docker
container: container:
image: git.php.fail/lubiana/container/php:ci image: git.php.fail/lubiana/container/php:8.4.1-ci
steps: steps:
- name: Manually checkout - name: Manually checkout
env: env:

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; $prevPage = $page - 1;
$itemsPerPage = 10; $itemsPerPage = 10;
$count = $foodOrderRepository->count(); $count = $foodOrderRepository->count();
if($count < $page * $itemsPerPage) { if ($count < $page * $itemsPerPage) {
$nextPage = $page; $nextPage = $page;
} }