You are here

protected function SqliteProfilerStorage::close in Zircon Profile 8

Same name and namespace in other branches
  1. 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\Profiler

Code

protected function close($db) {
  if ($db instanceof \SQLite3) {
    $db
      ->close();
  }
}