protected function SqliteProfilerStorage::close in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Profiler/SqliteProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\SqliteProfilerStorage::close()
Overrides PdoProfilerStorage::close
File
- vendor/
symfony/ http-kernel/ Profiler/ SqliteProfilerStorage.php, line 133
Class
- SqliteProfilerStorage
- SqliteProfilerStorage stores profiling information in a SQLite database.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
protected function close($db) {
if ($db instanceof \SQLite3) {
$db
->close();
}
}