getRouteCollectionDocument example

use Symfony\Component\Routing\RouteCollection;

/** * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> * * @internal */
class XmlDescriptor extends Descriptor
{
    protected function describeRouteCollection(RouteCollection $routes, array $options = []): void
    {
        $this->writeDocument($this->getRouteCollectionDocument($routes));
    }

    protected function describeRoute(Route $route, array $options = []): void
    {
        $this->writeDocument($this->getRouteDocument($route$options['name'] ?? null));
    }

    protected function describeContainerParameters(ParameterBag $parameters, array $options = []): void
    {
        $this->writeDocument($this->getContainerParametersDocument($parameters));
    }

    
Home | Imprint | This part of the site doesn't use cookies.