1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
LuckyCoinkydink/bundled-libs/zendframework/zend-db/Zend/Db/Adapter/Profiler/ProfilerInterface.php
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();
}