| Total Complexity | 6 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 55.56% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class Radera extends Hamta { |
||
| 19 | /** |
||
| 20 | * Radera omgång. |
||
| 21 | */ |
||
| 22 | public function radera_omgång(int $omgång, Speltyp $speltyp): void { |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Radera sekvens. |
||
| 35 | */ |
||
| 36 | 1 | public function radera_sekvens(int $omgång, Speltyp $speltyp, int $sekvens): void { |
|
| 37 | 1 | $this->odds->spel->db->radera_sekvens('distribution', $omgång, $speltyp, $sekvens); |
|
| 38 | 1 | $filnamn = $this->odds->spel->filer->filnamn($omgång, $speltyp, $sekvens); |
|
| 39 | |||
| 40 | 1 | $fil = GRAF . DISTRIBUTION . "/$filnamn.png"; |
|
| 41 | 1 | $this->radera_fil($fil); |
|
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Radera fil. |
||
| 46 | */ |
||
| 47 | 1 | private function radera_fil(string $fil): void { |
|
| 53 | } |
||
| 54 | } |
||
| 55 |