public function ProfilerStorageInterface::read in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Profiler/ProfilerStorageInterface.php \Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface::read()
Reads data associated with the given token.
The method returns false if the token does not exist in the storage.
Parameters
string $token A token:
Return value
Profile The profile associated with token
5 methods override ProfilerStorageInterface::read()
- BaseMemcacheProfilerStorage::read in vendor/
symfony/ http-kernel/ Profiler/ BaseMemcacheProfilerStorage.php - Reads data associated with the given token.
- FileProfilerStorage::read in vendor/
symfony/ http-kernel/ Profiler/ FileProfilerStorage.php - Reads data associated with the given token.
- MongoDbProfilerStorage::read in vendor/
symfony/ http-kernel/ Profiler/ MongoDbProfilerStorage.php - Reads data associated with the given token.
- PdoProfilerStorage::read in vendor/
symfony/ http-kernel/ Profiler/ PdoProfilerStorage.php - Reads data associated with the given token.
- RedisProfilerStorage::read in vendor/
symfony/ http-kernel/ Profiler/ RedisProfilerStorage.php - Reads data associated with the given token.
File
- vendor/
symfony/ http-kernel/ Profiler/ ProfilerStorageInterface.php, line 44
Class
- ProfilerStorageInterface
- ProfilerStorageInterface.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
public function read($token);