| 1 | <?php |
||
| 8 | class SetDifficultyNotification implements NotificationInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int|string |
||
| 12 | */ |
||
| 13 | private $difficulty; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * SetDifficultyNotification constructor. |
||
| 17 | * @param int|string $difficulty |
||
| 18 | */ |
||
| 19 | 3 | public function __construct($difficulty) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @return int|string |
||
| 26 | */ |
||
| 27 | 1 | public function getDifficulty() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return Request |
||
| 34 | */ |
||
| 35 | 2 | public function toRequest() |
|
| 39 | } |
||
| 40 |