function AttributeClassLoader::setRouteAttributeClass
Sets the attribute class to read route properties from.
1 call to AttributeClassLoader::setRouteAttributeClass()
- AttributeClassLoader::setRouteAnnotationClass in vendor/
symfony/ routing/ Loader/ AttributeClassLoader.php
File
-
vendor/
symfony/ routing/ Loader/ AttributeClassLoader.php, line 83
Class
- AttributeClassLoader
- AttributeClassLoader loads routing information from a PHP class and its methods.
Namespace
Symfony\Component\Routing\LoaderCode
public function setRouteAttributeClass(string $class) : void {
$this->routeAnnotationClass = $class;
$this->routeAttributeClass = $class;
}