gitextract_ykir7i6i/ ├── .gitattributes ├── .gitignore ├── BufferingLogger.php ├── CHANGELOG.md ├── Debug.php ├── DebugClassLoader.php ├── ErrorHandler.php ├── Exception/ │ ├── ClassNotFoundException.php │ ├── FatalErrorException.php │ ├── FatalThrowableError.php │ ├── FlattenException.php │ ├── OutOfMemoryException.php │ ├── SilencedErrorContext.php │ ├── UndefinedFunctionException.php │ └── UndefinedMethodException.php ├── ExceptionHandler.php ├── FatalErrorHandler/ │ ├── ClassNotFoundFatalErrorHandler.php │ ├── FatalErrorHandlerInterface.php │ ├── UndefinedFunctionFatalErrorHandler.php │ └── UndefinedMethodFatalErrorHandler.php ├── LICENSE ├── README.md ├── Tests/ │ ├── DebugClassLoaderTest.php │ ├── ErrorHandlerTest.php │ ├── Exception/ │ │ └── FlattenExceptionTest.php │ ├── ExceptionHandlerTest.php │ ├── FatalErrorHandler/ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ ├── Fixtures/ │ │ ├── AnnotatedClass.php │ │ ├── ClassAlias.php │ │ ├── ClassWithAnnotatedParameters.php │ │ ├── DefinitionInEvaluatedCode.php │ │ ├── DeprecatedClass.php │ │ ├── DeprecatedInterface.php │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ ├── ExtendedFinalMethod.php │ │ ├── FinalClasses.php │ │ ├── FinalMethod.php │ │ ├── FinalMethod2Trait.php │ │ ├── InterfaceWithAnnotatedParameters.php │ │ ├── InternalClass.php │ │ ├── InternalInterface.php │ │ ├── InternalTrait.php │ │ ├── InternalTrait2.php │ │ ├── LoggerThatSetAnErrorHandler.php │ │ ├── NonDeprecatedInterface.php │ │ ├── PEARClass.php │ │ ├── SubClassWithAnnotatedParameters.php │ │ ├── Throwing.php │ │ ├── ToStringThrower.php │ │ ├── TraitWithAnnotatedParameters.php │ │ ├── TraitWithInternalMethod.php │ │ ├── VirtualClass.php │ │ ├── VirtualClassMagicCall.php │ │ ├── VirtualInterface.php │ │ ├── VirtualSubInterface.php │ │ ├── VirtualTrait.php │ │ ├── casemismatch.php │ │ ├── notPsr0Bis.php │ │ ├── psr4/ │ │ │ └── Psr4CaseMismatch.php │ │ └── reallyNotPsr0.php │ ├── Fixtures2/ │ │ └── RequiredTwice.php │ ├── HeaderMock.php │ └── phpt/ │ ├── debug_class_loader.phpt │ ├── decorate_exception_hander.phpt │ ├── exception_rethrown.phpt │ └── fatal_with_nested_handlers.phpt ├── composer.json └── phpunit.xml.dist