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