| 13 | | public abstract function hasSql($name); |
| 14 | | public abstract function getSql($name, $instance = null); |
| 15 | | public abstract function hasQuery($name); |
| 16 | | public abstract function getQuery($name, $instance = null); |
| 17 | | public abstract function hasFile($name); |
| 18 | | public abstract function getFile($name, $instance = null); |
| 19 | | public abstract function hasPath($name); |
| 20 | | public abstract function getPath($name, $instance = null); |
| 21 | | public abstract function hasDelegate($name); |
| 22 | | public abstract function getDelegate($name, $instance = null); |
| | 13 | public abstract function isProcedureMethod(ReflectionMethod $method); |
| | 14 | public abstract function isInsertMethod(ReflectionMethod $method); |
| | 15 | public abstract function isUpdateMethod(ReflectionMethod $method); |
| | 16 | public abstract function isDeleteMethod(ReflectionMethod $method); |
| | 17 | public abstract function getProcedure(ReflectionMethod $method); |
| | 18 | public abstract function getSql(ReflectionMethod $method, $suffix = null); |
| | 19 | public abstract function getFile(ReflectionMethod $method); |
| | 20 | public abstract function getQuery(ReflectionMethod $method); |
| | 21 | public abstract function getDelegate(ReflectionMethod $method); |