function ProfilerStorageInterface::find
Finds profiler tokens for the given criteria.
Parameters
int|null $limit The maximum number of tokens to return:
int|null $start The start date to search from:
int|null $end The end date to search to:
string|null $statusCode The response status code:
\Closure|null $filter A filter to apply on the list of tokens:
1 method overrides ProfilerStorageInterface::find()
- FileProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ FileProfilerStorage.php - Finds profiler tokens for the given criteria.
File
-
vendor/
symfony/ http-kernel/ Profiler/ ProfilerStorageInterface.php, line 38
Class
- ProfilerStorageInterface
- ProfilerStorageInterface.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
public function find(?string $ip, ?string $url, ?int $limit, ?string $method, ?int $start = null, ?int $end = null, ?string $statusCode = null, ?\Closure $filter = null) : array;