protected function SqliteProfilerStorage::close

Overrides PdoProfilerStorage::close

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/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();
  }
}