Tester\TestCase::silentTearDown PHP Method

silentTearDown() private method

private silentTearDown ( )
    private function silentTearDown()
    {
        set_error_handler(function () {
        });
        try {
            $this->tearDown();
        } catch (\Exception $e) {
        }
        restore_error_handler();
    }