| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function print(): string |
||
| 32 | { |
||
| 33 | return sprintf("```php\n%s\n```" . PHP_EOL, str_replace( |
||
| 34 | PHP_EOL . PHP_EOL, |
||
| 35 | PHP_EOL . PHP_EOL . $this->ioSamples->map(function ($ioSample): string { |
||
| 36 | return implode('', [ |
||
| 37 | sprintf('// uri: %s' . PHP_EOL, $ioSample->uri), |
||
| 38 | sprintf('// sql: %s' . PHP_EOL, $ioSample->sql), |
||
| 39 | ]); |
||
| 40 | })->implode(''), |
||
| 41 | $this->code |
||
| 42 | )); |
||
| 45 |