PHP Symfony\Component\Routing\Loader Namespace

Interfaces

Name Description
LoaderInterface LoaderInterface is the interface that all loaders classes must implement.
LoaderResolverInterface LoaderResolverInterface selects a loader for a given resource.

Classes

Name Description
AnnotationClassLoader AnnotationClassLoader loads routing information from a PHP class and its methods.
AnnotationDirectoryLoader AnnotationDirectoryLoader loads routing information from annotations set on PHP classes and methods.
AnnotationFileLoader AnnotationFileLoader loads routing information from annotations set on a PHP class and its methods.
AnnotationGlobLoader AnnotationGlobLoader loads routing information from annotations set on PHP classes and methods.
ClosureLoader ClosureLoader loads routes from a PHP closure.
DelegatingLoader DelegatingLoader delegates route loading to other loaders using a loader resolver.
FileLoader FileLoader is the abstract class used by all built-in loaders that are file based.
Loader Loader is the abstract class used by all built-in loaders.
LoaderResolver LoaderResolver selects a loader for a given resource.
PhpFileLoader PhpFileLoader loads routes from a PHP file.
XmlFileLoader XmlFileLoader loads XML routing files.
YamlFileLoader