MapClassLoader

class MapClassLoader

A class loader that uses a mapping file to look up paths.

Methods

__construct(array $map)

Constructor.

register(bool $prepend = false)

Registers this instance as an autoloader.

loadClass(string $class)

Loads the given class or interface.

string|null findFile(string $class)

Finds the path to the file where the class is defined.

Details

__construct(array $map)

Constructor.

Parameters

array $map A map where keys are classes and values the absolute file path

register(bool $prepend = false)

Registers this instance as an autoloader.

Parameters

bool $prepend Whether to prepend the autoloader or not

loadClass(string $class)

Loads the given class or interface.

Parameters

string $class The name of the class

string|null findFile(string $class)

Finds the path to the file where the class is defined.

Parameters

string $class The name of the class

Return Value

string|null The path, if found
doc_Symfony
2016-10-28 06:23:17
Comments
Leave a Comment

Please login to continue.