1 | <?php |
||
23 | class Wind |
||
24 | { |
||
25 | /** |
||
26 | * @var Unit The wind speed. |
||
27 | */ |
||
28 | public $speed; |
||
29 | |||
30 | /** |
||
31 | * @var Unit The wind direction. |
||
32 | */ |
||
33 | public $direction; |
||
34 | |||
35 | /** |
||
36 | * Create a new wind object. |
||
37 | * |
||
38 | * @param Unit $speed The wind speed. |
||
39 | * @param Unit $direction The wind direction. |
||
40 | * |
||
41 | * @internal |
||
42 | */ |
||
43 | 19 | public function __construct(Unit $speed, Unit $direction) |
|
48 | } |
||
49 |