Open vaclavvanik opened 8 years ago
Now exists ProfilerInterface which has ability to collect data.
I think there should exist ReaderInterface which would provide way to read data. Eg:
ReaderInterface
<?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.
Zend\Db\Adapter\Profiler\Profiler
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.
Now exists ProfilerInterface which has ability to collect data.
I think there should exist
ReaderInterface
which would provide way to read data. Eg:And finally
Zend\Db\Adapter\Profiler\Profiler
will implement this interface.Thoughts?