| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 56 | private function insertDocument(int $documentId): ResponseInterface | ||
| 57 |     { | ||
| 58 | $res = $this->r() | ||
| 59 |             ->table('tabletest') | ||
| 60 | ->insert([ | ||
| 61 | [ | ||
| 62 | 'documentId' => $documentId, | ||
| 63 | 'title' => 'Test document', | ||
| 64 | 'description' => 'My first document.', | ||
| 65 | ], | ||
| 66 | ]) | ||
| 67 | ->run(); | ||
| 68 | |||
| 69 | return $res; | ||
| 70 | } | ||
| 72 |