I am using a simple class to log my sql queries and return the total amount of queries and time taken to execute.
class QueryLogger { public $queries = arra
You just forgot the object reference ($this).
$this
$this->queries[] = microtime(true) - $start;