Method |
Description |
|
autoload ( string $class ) : boolean |
Handles autoloading of classes that have been specified in autoload.yml. |
|
getClassPath ( string $class ) : string | null |
Returns the path where a particular class can be found. |
|
getInstance ( ) : sfCoreAutoload |
Retrieves the singleton instance of this class. |
|
loadClass ( string $class ) : boolean |
Tries to load a class that has been specified in autoload.yml. |
|
register ( ) : void |
Register sfAutoload in spl autoloader. |
|
reloadClasses ( boolean $force = false ) : boolean |
Reloads the autoloader. |
|
setClassPath ( string $class, string $path ) |
Sets the path for a particular class. |
|
unregister ( ) : void |
Unregister sfAutoload from spl autoloader. |
|