You are here

class MockExceptionHandler in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/debug/Tests/MockExceptionHandler.php \Symfony\Component\Debug\Tests\MockExceptionHandler

Hierarchy

  • class \Symfony\Component\Debug\Tests\MockExceptionHandler extends \Symfony\Component\Debug\Tests\Exceptionhandler

Expanded class hierarchy of MockExceptionHandler

File

vendor/symfony/debug/Tests/MockExceptionHandler.php, line 16

Namespace

Symfony\Component\Debug\Tests
View source
class MockExceptionHandler extends Exceptionhandler {
  public $e;
  public function handle(\Exception $e) {
    $this->e = $e;
  }

}

Members