public function TraceableControllerResolver::__construct

Constructor.

Parameters

ControllerResolverInterface $resolver A ControllerResolverInterface instance:

Stopwatch $stopwatch A Stopwatch instance:

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Controller/TraceableControllerResolver.php, line 33

Class

TraceableControllerResolver
TraceableControllerResolver.

Namespace

Symfony\Component\HttpKernel\Controller

Code

public function __construct(ControllerResolverInterface $resolver, Stopwatch $stopwatch) {
  $this->resolver = $resolver;
  $this->stopwatch = $stopwatch;
}