$frames
$frames : array<mixed,array>
Exposes a fluent interface for dealing with an ordered list of stack-trace frames.
filter(callable $callable) : \Whoops\Exception\FrameCollection
Filters frames using a callable, returns the same FrameCollection
callable | $callable |
map(callable $callable) : \Whoops\Exception\FrameCollection
Map the collection of frames
callable | $callable |
prependFrames(array<mixed,\Whoops\Exception\Frame> $frames)
array<mixed,\Whoops\Exception\Frame> | $frames | Array of Frame instances, usually from $e->getPrevious() |
topDiff(\Whoops\Exception\FrameCollection $parentFrames) : array<mixed,\Whoops\Exception\Frame>
Gets the innermost part of stack trace that is not the same as that of outer exception
\Whoops\Exception\FrameCollection | $parentFrames | Outer exception frames to compare tail against |
Loading…