zend-db icon indicating copy to clipboard operation
zend-db copied to clipboard

Reading data from profiler

Open vaclavvanik opened this issue 8 years ago • 1 comments

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?

vaclavvanik avatar Oct 18 '16 18:10 vaclavvanik

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.

michalbundyra avatar Jan 16 '20 19:01 michalbundyra