zend-db
zend-db copied to clipboard
Reading data from profiler
Now exists ProfilerInterface which has ability to collect data.
I think there should exist ReaderInterface
which would provide way to read data. Eg:
<?php
namespace Zend\Db\Adapter\Profiler;
interface ReaderInterface
{
/**
* @return array|null
*/
public function getLastProfile();
/**
* @return array
*/
public function getProfiles();
}
And finally Zend\Db\Adapter\Profiler\Profiler
will implement this interface.
Thoughts?
This repository has been closed and moved to laminas/laminas-db; a new issue has been opened at https://github.com/laminas/laminas-db/issues/91.