| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 2 | public function __construct( |
|
| 21 | FleetInterface $fleet, |
||
| 22 | ShipWrapperFactoryInterface $shipWrapperFactory, |
||
| 23 | GameControllerInterface $game, |
||
| 24 | bool $isSingleShips |
||
| 25 | ) { |
||
| 26 | 2 | $this->fleet = $fleet; |
|
| 27 | 2 | $this->shipWrapperFactory = $shipWrapperFactory; |
|
| 28 | 2 | $this->game = $game; |
|
| 29 | 2 | $this->isSingleShips = $isSingleShips; |
|
| 30 | } |
||
| 52 |