Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Commit

Permalink
Added symfony 5.1, changed type of Exception from Interface to concre…
Browse files Browse the repository at this point in the history
…te implementation (#20)
  • Loading branch information
Christoph Quadt committed Aug 21, 2020
1 parent aac8ee0 commit 12fe6c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -22,19 +22,19 @@
"require": {
"php": "^7.2",
"jms/serializer": "^2.1 || ^3.0",
"symfony/messenger": "^4.4 || ^5.0"
"symfony/messenger": "^4.4 || ^5.1"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/symfony2-extension": "^2.1",
"jms/serializer-bundle": "^3.1",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"phpunit/phpunit": "^7.4",
"symfony/config": "^4.2",
"symfony/debug": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/framework-bundle": "^4.2",
"symfony/http-kernel": "^4.2"
"symfony/config": "^4.4 || ^5.1",
"symfony/debug": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/framework-bundle": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.1"
},
"config": {
"bin-dir": "bin",
Expand Down
Expand Up @@ -3,7 +3,7 @@
<class name="Symfony\Component\ErrorHandler\Exception\FlattenException" exclusion-policy="ALL">
<property name="message" type="string" expose="true" />
<property name="code" type="int" expose="true" />
<property name="previous" type="Throwable" expose="true" />
<property name="previous" type="Symfony\Component\ErrorHandler\Exception\FlattenException" expose="true" />
<property name="trace" type="array" expose="true" />
<property name="traceAsString" type="string" expose="true" />
<property name="class" type="string" expose="true" />
Expand Down

0 comments on commit 12fe6c8

Please sign in to comment.