abstract protected function PdoProfilerStorage::buildCriteria in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Profiler/PdoProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\PdoProfilerStorage::buildCriteria()
Build SQL criteria to fetch records by ip and url.
Parameters
string $ip The IP:
string $url The URL:
string $start The start period to search from:
string $end The end period to search to:
string $limit The maximum number of tokens to return:
string $method The request method:
Return value
array An array with (criteria, args)
1 call to PdoProfilerStorage::buildCriteria()
- PdoProfilerStorage::find in vendor/
symfony/ http-kernel/ Profiler/ PdoProfilerStorage.php - Finds profiler tokens for the given criteria.
2 methods override PdoProfilerStorage::buildCriteria()
- MysqlProfilerStorage::buildCriteria in vendor/
symfony/ http-kernel/ Profiler/ MysqlProfilerStorage.php - Build SQL criteria to fetch records by ip and url.
- SqliteProfilerStorage::buildCriteria in vendor/
symfony/ http-kernel/ Profiler/ SqliteProfilerStorage.php - Build SQL criteria to fetch records by ip and url.
File
- vendor/
symfony/ http-kernel/ Profiler/ PdoProfilerStorage.php, line 139
Class
- PdoProfilerStorage
- Base PDO storage for profiling information in a PDO database.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
protected abstract function buildCriteria($ip, $url, $start, $end, $limit, $method);