public function Profiler::loadProfile

Loads the Profile for the given token.

Parameters

string $token A token:

Return value

Profile A Profile instance

1 call to Profiler::loadProfile()
Profiler::loadProfileFromResponse in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profiler.php
Loads the Profile for the given Response.

File

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

Class

Profiler
Profiler.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

public function loadProfile($token) {
  return $this->storage
    ->read($token);
}