1 | <?php |
||
22 | trait PlatformTrait |
||
23 | { |
||
24 | private $platform; |
||
25 | |||
26 | /** |
||
27 | * Returns the intended target platform for this object. |
||
28 | * |
||
29 | * @return string|null |
||
30 | */ |
||
31 | public function getPlatform() |
||
35 | |||
36 | /** |
||
37 | * Sets the intended target platform for this object. |
||
38 | * |
||
39 | * @param string $platform |
||
40 | * |
||
41 | * @return $this |
||
42 | */ |
||
43 | public function setPlatform($platform) |
||
48 | } |
||
49 |