@@ -37,6 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | /** |
39 | 39 | * {@inheritDoc} |
40 | + * @param string $col |
|
40 | 41 | */ |
41 | 42 | public function col($col, /*# string */ $alias = '') |
42 | 43 | { |
@@ -94,6 +95,7 @@ discard block |
||
94 | 95 | |
95 | 96 | /** |
96 | 97 | * {@inheritDoc} |
98 | + * @param string $template |
|
97 | 99 | */ |
98 | 100 | public function colTpl( |
99 | 101 | /*# string */ $template, |
@@ -192,11 +194,23 @@ discard block |
||
192 | 194 | return $this->is_distinct ? ' DISTINCT' : ''; |
193 | 195 | } |
194 | 196 | |
197 | + /** |
|
198 | + * @param boolean $rawMode |
|
199 | + */ |
|
195 | 200 | abstract protected function isRaw($str, /*# bool */ $rawMode)/*# : bool */; |
196 | 201 | abstract protected function quoteAlias($alias)/*# : string */; |
197 | 202 | abstract protected function quoteItem($item, /*# bool */ $rawMode = false)/*# : string */; |
198 | 203 | abstract protected function clauseTpl(/*# string */ $template, $col)/*# : string */; |
204 | + |
|
205 | + /** |
|
206 | + * @param string $clauseName |
|
207 | + */ |
|
199 | 208 | abstract protected function &getClause(/*# string */ $clauseName)/*# : array */; |
209 | + |
|
210 | + /** |
|
211 | + * @param string $prefix |
|
212 | + * @param string $seperator |
|
213 | + */ |
|
200 | 214 | abstract protected function joinClause( |
201 | 215 | /*# : string */ $prefix, |
202 | 216 | /*# : string */ $seperator, |