1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-25 02:31:25 +02:00

Update TraceablePDO.php

This commit is contained in:
Barry vd. Heuvel
2016-04-16 23:06:04 +02:00
parent 12524f5eee
commit 26d6c31541

View File

@@ -169,6 +169,16 @@ class TraceablePDO extends PDO
return $this->executedStatements;
}
/**
* Reset the list of executed statements
*
* @return void
*/
public function resetExecutedStatements()
{
$this->executedStatements = array();
}
/**
* Returns the list of failed statements
*