Skip to content

Commit 73db6e1

Browse files
peter279kkpicaza
authored andcommitted
Add PHP 8.0 on GitHub action and Fix Psalm issue
1 parent 3a38011 commit 73db6e1

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "locked"
2121
php-version:
2222
- "7.4"
23+
- "8.0"
2324
operating-system:
2425
- "ubuntu-latest"
2526

.github/workflows/mutation-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "locked"
2121
php-version:
2222
- "7.4"
23+
- "8.0"
2324
operating-system:
2425
- "ubuntu-latest"
2526

@@ -60,4 +61,4 @@ jobs:
6061
env:
6162
INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }}
6263
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
63-
64+

.github/workflows/phpunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "locked"
2121
php-version:
2222
- "7.4"
23+
- "8.0"
2324
operating-system:
2425
- "ubuntu-latest"
2526

.github/workflows/psalm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "locked"
2121
php-version:
2222
- "7.4"
23+
- "8.0"
2324
operating-system:
2425
- "ubuntu-latest"
2526

src/MiddlewarePipeline.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function (ServerRequestInterface $request) {
5353
/** @var string $requestId */
5454
$requestId = $request->getAttribute('request_id');
5555
try {
56-
/** @var MiddlewareInterface $middleware */
5756
$middleware = $this->concurrentPipelines[$requestId]->dequeue();
5857

5958
$response = $middleware->process($request, $this);
@@ -84,7 +83,6 @@ public function process(ServerRequestInterface $request, RequestHandlerInterface
8483
/** @var string $requestId */
8584
$requestId = $request->getAttribute('request_id');
8685
try {
87-
/** @var MiddlewareQueue $queue */
8886
$queue = $this->concurrentPipelines[$requestId];
8987
$next = new NextHandler($queue, $handler);
9088

0 commit comments

Comments
 (0)