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