Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TraceableArgumentResolver.php

function TraceableArgumentResolver::getArguments

Overrides ArgumentResolverInterface::getArguments

File

vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php, line 28

Class

TraceableArgumentResolver
@author Fabien Potencier <fabien@symfony.com>

Namespace

Symfony\Component\HttpKernel\Controller

Code

public function getArguments(Request $request, callable $controller, ?\ReflectionFunctionAbstract $reflector = null) : array {
    $e = $this->stopwatch
        ->start('controller.get_arguments');
    try {
        return $this->resolver
            ->getArguments($request, $controller, $reflector);
    } finally {
        $e->stop();
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal