| Conditions | 3 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function toSql(ITypeDictionary $typeDictionary) : string |
||
| 31 | { |
||
| 32 | $relSql = $this->relRecipe->toSql($typeDictionary); |
||
| 33 | return sprintf( |
||
| 34 | "SELECT *\nFROM (\n%s\n) t%s%s", |
||
| 35 | $relSql, |
||
| 36 | ($this->limit !== null ? "\nLIMIT {$this->limit}" : ''), |
||
| 37 | ($this->offset ? "\nOFFSET {$this->offset}" : '') |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |