class DebugClassLoader

Autoloader checking if the class is really defined in the file found.

The ClassLoader will wrap all registered autoloaders and will throw an exception if a file is found but does not declare the class.

Methods

__construct(callable $classLoader)

No description

callable
getClassLoader()

Gets the wrapped class loader.

static 
enable()

Wraps all autoloaders.

static 
disable()

Disables the wrapping.

loadClass(string $class)

Loads the given class or interface.

checkAnnotations(ReflectionClass $refl, $class)

No description

checkCase(ReflectionClass $refl, $file, $class)

No description

Details

__construct(callable $classLoader)

Parameters

callable $classLoader

callable getClassLoader()

Gets the wrapped class loader.

Return Value

callable The wrapped class loader

static enable()

Wraps all autoloaders.

static disable()

Disables the wrapping.

loadClass(string $class)

Loads the given class or interface.

Parameters

string $class The name of the class

Exceptions

RuntimeException

checkAnnotations(ReflectionClass $refl, $class)

Parameters

ReflectionClass $refl
$class

checkCase(ReflectionClass $refl, $file, $class)

Parameters

ReflectionClass $refl
$file
$class