@@ -38,6 +38,7 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * {@inheritDoc} |
| 41 | + * @param string $col |
|
| 41 | 42 | */ |
| 42 | 43 | public function col($col, /*# string */ $alias = '') |
| 43 | 44 | { |
@@ -95,6 +96,7 @@ discard block |
||
| 95 | 96 | |
| 96 | 97 | /** |
| 97 | 98 | * {@inheritDoc} |
| 99 | + * @param string $template |
|
| 98 | 100 | */ |
| 99 | 101 | public function colTpl( |
| 100 | 102 | /*# string */ $template, |
@@ -188,8 +190,19 @@ discard block |
||
| 188 | 190 | return $this->is_distinct ? ' DISTINCT' : $prefix; |
| 189 | 191 | } |
| 190 | 192 | |
| 193 | + /** |
|
| 194 | + * @param boolean $rawMode |
|
| 195 | + */ |
|
| 191 | 196 | abstract protected function isRaw($str, /*# bool */ $rawMode)/*# : bool */; |
| 197 | + |
|
| 198 | + /** |
|
| 199 | + * @param string $clauseName |
|
| 200 | + */ |
|
| 192 | 201 | abstract protected function &getClause(/*# string */ $clauseName)/*# : array */; |
| 202 | + |
|
| 203 | + /** |
|
| 204 | + * @param string $clauseName |
|
| 205 | + */ |
|
| 193 | 206 | abstract protected function buildClause( |
| 194 | 207 | /*# string */ $clauseName, |
| 195 | 208 | /*# string */ $clausePrefix, |