Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
26 | public function __construct( |
||
27 | Find $goal, |
||
28 | bool $weightedMoves, |
||
29 | bool $exhausting, |
||
30 | ?Heuristic $heuristic |
||
31 | ) { |
||
32 | $this->goal = $goal; |
||
33 | $this->weightedMoves = $weightedMoves; |
||
34 | $this->exhausting = $exhausting; |
||
35 | $this->heuristic = $heuristic; |
||
36 | } |
||
63 |