2013-08-18 12:46:45 +02:00

14 lines
269 B
PHP

<?php
namespace Zend\Db\Adapter\Profiler;
interface ProfilerInterface
{
/**
* @param string|\Zend\Db\Adapter\StatementContainerInterface $target
* @return mixed
*/
public function profilerStart($target);
public function profilerFinish();
}