| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | 2 | public function populera_databas(string $data, array $vektorer): void { |
|
| 60 | 2 | $sats = $this->spel->db->temp->prepare("REPLACE INTO `parallellisering` (`val`, `namn`) VALUES (:val, :namn)"); |
|
| 61 | 2 | $sats->bindValue(':val', $data, PDO::PARAM_STR); |
|
| 62 | 2 | $sats->bindValue(':namn', "g{$vektorer[0]}{$vektorer[1]}{$vektorer[2]}{$vektorer[3]}", PDO::PARAM_STR); |
|
| 63 | 2 | $sats->execute(); |
|
| 64 | } |
||
| 66 |