| 1 | <?php |
||
| 30 | class Template extends Raw |
||
| 31 | { |
||
| 32 | use QuoteTrait; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var string |
||
| 36 | * @access protected |
||
| 37 | */ |
||
| 38 | protected $template; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string|string[] |
||
| 42 | * @access protected |
||
| 43 | */ |
||
| 44 | protected $col; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $template |
||
| 48 | * @param string|string[] $col column[s] |
||
| 49 | * @access public |
||
| 50 | */ |
||
| 51 | public function __construct(/*# string */ $template, $col) |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritDoc} |
||
| 59 | */ |
||
| 60 | public function getStatement(array $settings= [])/*# : string */ |
||
| 76 | } |
||
| 77 |