| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 4 | public function __construct(public Spel $spel) { |
|
| 28 | 4 | $this->utdelning = new Utdelning($this->spel); |
|
| 29 | 4 | $this->matcher = new Matcher($this->spel); |
|
| 30 | 4 | $this->odds = new Prediktioner($this->spel, 'odds'); |
|
| 31 | 4 | $this->streck = new Prediktioner($this->spel, 'streck'); |
|
| 32 | 4 | $this->parallellisering = new Parallellisering($this->spel); |
|
| 33 | 4 | $this->spelade = new Spelade($this->utdelning, $this->matcher); |
|
| 34 | 4 | $this->moduler = new Moduler($this->utdelning, $this->odds, $this->streck, $this->matcher); |
|
| 35 | } |
||
| 49 |