Compare commits

..

No commits in common. "a974688872bd038b1de7e946b08205367260ddbd" and "ee5d515ac11d034559bd639bb70356a1eb33dad4" have entirely different histories.

5 changed files with 614 additions and 623 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:8.4.1-ci image: git.php.fail/lubiana/container/php: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:8.4.1-ci image: git.php.fail/lubiana/container/php: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:8.4.1-ci image: git.php.fail/lubiana/container/php: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;
} }