| 1 | <?php |
||
| 7 | class Lottery extends Game |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var LotteryMapperInterface |
||
| 11 | */ |
||
| 12 | protected $lotteryMapper; |
||
| 13 | |||
| 14 | public function subscribeToLottery($game, $user, $entry) |
||
| 28 | |||
| 29 | public function getGameEntity() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * getLotteryMapper |
||
| 36 | * |
||
| 37 | * @return LotteryMapperInterface |
||
| 38 | */ |
||
| 39 | public function getLotteryMapper() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * setLotteryMapper |
||
| 50 | * |
||
| 51 | * @param LotteryMapperInterface $lotteryMapper |
||
| 52 | * @return Lottery |
||
| 53 | */ |
||
| 54 | public function setLotteryMapper(GameMapperInterface $lotteryMapper) |
||
| 60 | } |
||
| 61 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..