| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function import($organisation, $project, array $simplifiedEvent) |
||
| 28 | { |
||
| 29 | $this->connection->executeQuery( |
||
| 30 | 'INSERT OR IGNORE INTO events (organisation, project, event_id, created) VALUES(?, ?, ?, ?)', |
||
| 31 | [ |
||
| 32 | $organisation, |
||
| 33 | $project, |
||
| 34 | $simplifiedEvent['id'], |
||
| 35 | $simplifiedEvent['created'] |
||
| 36 | ] |
||
| 37 | ); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |