Skip to content

Commit 1bb822b

Browse files
authoredApr 14, 2025
Merge pull request #24 from swagindustries/php-84-support
⬆️ Add support for PHP 8.4
2 parents 5d8e205 + 4c06479 commit 1bb822b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
php: ['8.1', '8.2', '8.3']
17+
php: ['8.1', '8.2', '8.3', '8.4']
1818
steps:
1919
- uses: actions/checkout@v2
2020

‎src/DataCollector/DomainEventDataCollector.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function reset(): void
5050
$this->dispatcher->reset();
5151
}
5252

53-
public function collect(Request $request, Response $response, ?\Throwable $exception = null)
53+
public function collect(Request $request, Response $response, ?\Throwable $exception = null): void
5454
{
5555
$this->currentRequest = $this->requestStack->getMainRequest() !== $request ? $request : null;
5656
$this->data = [

‎src/Integration/Symfony/DomainBundle.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function getContainerExtension(): ?ExtensionInterface
1717
return new DomainExtension();
1818
}
1919

20-
public function build(ContainerBuilder $container)
20+
public function build(ContainerBuilder $container): void
2121
{
2222
parent::build($container);
2323

0 commit comments

Comments
 (0)