You are here

protected function FileProfilerStorage::getIndexFilename in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::getIndexFilename()

Gets the index filename.

Return value

string The index filename

2 calls to FileProfilerStorage::getIndexFilename()
FileProfilerStorage::find in vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php
Finds profiler tokens for the given criteria.
FileProfilerStorage::write in vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php
Saves a Profile.

File

vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php, line 203

Class

FileProfilerStorage
Storage for profiler using files.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

protected function getIndexFilename() {
  return $this->folder . '/index.csv';
}