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

Commit

Permalink
Added missing properties to Symfonys FlattenException. (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Quadt <quadt@united-domains.de>
  • Loading branch information
Christoph Quadt and chq81 committed Jul 3, 2020
1 parent 595e1b3 commit aac8ee0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
<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="trace" type="array" expose="true" />
<property name="traceAsString" type="string" expose="true" />
<property name="class" type="string" expose="true" />
<property name="statusCode" type="string" expose="true" />
<property name="statusCode" type="int" expose="true" />
<property name="statusText" type="string" expose="true" />
<property name="headers" type="array" expose="true" />
<property name="file" type="string" expose="true" />
<property name="line" type="int" expose="true" />
<property name="asString" type="string" expose="true" />
</class>
</serializer>

0 comments on commit aac8ee0

Please sign in to comment.