14 lines
269 B
PHP
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();
|
|
}
|