1 | <?php |
||
17 | class ZoomFactor implements \JsonSerializable |
||
18 | { |
||
19 | /** |
||
20 | * Zoom. |
||
21 | * |
||
22 | * @var int |
||
23 | */ |
||
24 | private $zoom; |
||
25 | |||
26 | /** |
||
27 | * Internal constructor. |
||
28 | * |
||
29 | * @param int $zoom |
||
30 | */ |
||
31 | public function __construct($zoom) |
||
35 | |||
36 | /** |
||
37 | * Format data for JSON serialization. |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | public function jsonSerialize() |
||
47 | } |
||
48 |