| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | protected function insertDocumentWithNumber($id, int $number): ResponseInterface |
||
| 55 | { |
||
| 56 | $res = $this->r() |
||
| 57 | ->table('tabletest') |
||
| 58 | ->insert([ |
||
| 59 | 'id' => $id, |
||
| 60 | 'title' => 'Test document '.$id, |
||
| 61 | 'number' => $number, |
||
| 62 | 'description' => 'A document description.', |
||
| 63 | ]) |
||
| 64 | ->run(); |
||
| 65 | |||
| 66 | return $res; |
||
| 67 | } |
||
| 69 |