Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
63 | public function getStatement(array $settings = [])/*# : string */ |
||
64 | { |
||
65 | if (!empty($settings)) { |
||
66 | $quoted = []; |
||
67 | foreach ((array) $this->col as $c) { |
||
68 | $quoted[] = $this->quote($c, $settings); |
||
69 | } |
||
70 | } else { |
||
71 | $quoted = (array) $this->col; |
||
72 | } |
||
73 | return vsprintf($this->template, $quoted); |
||
74 | } |
||
75 | } |
||
76 |