| 1 | <?php |
||
| 7 | class Lottery extends Game |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var LotteryMapperInterface |
||
| 11 | */ |
||
| 12 | protected $lotteryMapper; |
||
| 13 | |||
| 14 | public function subscribeToLottery($game, $user, $entry) |
||
| 26 | |||
| 27 | public function getGameEntity() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * getLotteryMapper |
||
| 34 | * |
||
| 35 | * @return LotteryMapperInterface |
||
| 36 | */ |
||
| 37 | public function getLotteryMapper() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * setLotteryMapper |
||
| 48 | * |
||
| 49 | * @param LotteryMapperInterface $lotteryMapper |
||
| 50 | * @return Lottery |
||
| 51 | */ |
||
| 52 | public function setLotteryMapper(GameMapperInterface $lotteryMapper) |
||
| 58 | } |
||
| 59 |
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..