/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
spatie
/
flare-client-php
/
tests
/
TestClasses
/
Upload File
HOME
<?php namespace Spatie\FlareClient\Tests\TestClasses; use Spatie\FlareClient\Contracts\ProvidesFlareContext; class ExceptionWithContext extends \Exception implements ProvidesFlareContext { public function context(): array { return [ 'context' => [ 'another key' => 'another value', ], ]; } }