Ross Bearman

Results 4 comments of Ross Bearman

I've just run into this issue myself. As all exceptions and errors in PHP 7 inherit from the Throwable class, I changed the signatures of `addException(Exception $e)` and `formatExceptionData(Exception $e)`...

Hi czim, Thanks for taking the time to look into this. Unfortunately I don't think the workaround would work in our situation, at least not without considerable work. I think...

That suggestion has made me think of an ugly, but workable solution for this case. As I can guarantee that certain attributes on this entity won't be null _unless_ they're...

This is the solution I went with in the end, overriding the `toArray()` method on the entity, which works fine for our use case. This would likely be appropriate in...