File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/MongoDbProfilerStorage.php, line 157
Class
- MongoDbProfilerStorage
Namespace
Symfony\Component\HttpKernel\Profiler
Code
protected function cleanup() {
$this
->getMongo()
->remove(array(
'time' => array(
'$lt' => time() - $this->lifetime,
),
));
}