| 1 | <?php |
||
| 10 | class FlightBonus |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $bonusAmount; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param int $bonusAmount |
||
| 19 | */ |
||
| 20 | private function __construct($bonusAmount) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return FlightBonus |
||
| 27 | */ |
||
| 28 | public static function zero() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param FlightPoints $points |
||
| 35 | * |
||
| 36 | * @return FlightBonus |
||
| 37 | */ |
||
| 38 | public function addPoints(FlightPoints $points) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return int |
||
| 45 | */ |
||
| 46 | public function getValue() |
||
| 50 | |||
| 51 | } |