[HttpKernel] Coding convention for the file profiler storage

This commit is contained in:
alexandresalome 2011-07-25 10:51:35 +02:00
parent 9ae2c8dc0f
commit ea916c3910

View File

@ -154,7 +154,7 @@ class FileProfilerStorage implements ProfilerStorageInterface
$folderA = substr($token, -2, 2); $folderA = substr($token, -2, 2);
$folderB = substr($token, -4, 2); $folderB = substr($token, -4, 2);
return $this->folder . '/' . $folderA . '/' . $folderB . '/' . $token; return $this->folder.'/'.$folderA.'/'.$folderB.'/'.$token;
} }
/** /**
@ -164,6 +164,6 @@ class FileProfilerStorage implements ProfilerStorageInterface
*/ */
protected function getIndexFilename() protected function getIndexFilename()
{ {
return $this->folder . '/' . 'index.csv'; return $this->folder.'/'.'index.csv';
} }
} }