| Conditions | 3 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 62 | public function generate(): string |
||
| 63 | { |
||
| 64 | $isFunction = false; |
||
| 65 | if ( |
||
| 66 | strpos($this->expr, ' ') !== false || |
||
| 67 | strpos($this->expr, '(') !== false |
||
| 68 | ) { |
||
| 69 | $isFunction = true; |
||
| 70 | } |
||
| 71 | |||
| 72 | return $this->querySystem |
||
| 73 | ->getQuerySgbd() |
||
| 74 | ->order($this->expr, $this->sort, $isFunction) |
||
| 75 | ; |
||
| 78 |