public function Profile::getCollector

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profile.php, line 183

Class

Profile
Profile.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

public function getCollector($name) {
  if (!isset($this->collectors[$name])) {
    throw new \InvalidArgumentException(sprintf('Collector "%s" does not exist.', $name));
  }
  return $this->collectors[$name];
}