Skip to content

Commit

Permalink
Merge pull request #13 from PcComponentes/feature/symfony-5.0
Browse files Browse the repository at this point in the history
Symfony 5 support
  • Loading branch information
AaronBernabeu authored May 13, 2020
2 parents bdff96e + d68974d commit dcbacb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"require": {
"php": "^7.4",
"ext-json": "*",
"monolog/monolog": "^1.25",
"monolog/monolog": "^1.25|^2.0",
"pccomponentes/ddd": "^2.0",
"symfony/http-kernel": "^4.4",
"symfony/messenger": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/stopwatch": "^4.4",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/messenger": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/stopwatch": "^4.4|^5.0",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion tests/DomainTrace/MessageTraceMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testShouldFailNonExistingEnvelopeMessage()
$this->mockEnvelope
->expects($this->once())
->method('getMessage')
->willReturn(null);
->willReturn(new \stdClass());

$this->expectException(\TypeError::class);

Expand Down

0 comments on commit dcbacb2

Please sign in to comment.