| Conditions | 3 |
| Paths | 3 |
| Total Lines | 17 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function generate(): string |
||
| 40 | { |
||
| 41 | if ($this->isDisabled === true) { |
||
| 42 | return ''; |
||
| 43 | } |
||
| 44 | |||
| 45 | $sqlPart = ''; |
||
| 46 | |||
| 47 | foreach ($this->list as $index => $order) { |
||
| 48 | $sqlPart .= $this->querySystem->getQuerySgbd()->listItem( |
||
| 49 | $order->generate(), |
||
| 50 | $index, |
||
| 51 | $this->separator |
||
| 52 | ); |
||
| 53 | } |
||
| 54 | |||
| 55 | return $sqlPart; |
||
| 56 | } |
||
| 58 |