1 | <?php |
||
25 | trait PlatformTrait |
||
26 | { |
||
27 | private $platform; |
||
28 | |||
29 | /** |
||
30 | * Returns the intended target platform for this object. |
||
31 | * |
||
32 | * @return string|null |
||
33 | */ |
||
34 | 4 | public function getPlatform() |
|
38 | |||
39 | /** |
||
40 | * Sets the intended target platform for this object. |
||
41 | * |
||
42 | * @param string $platform |
||
43 | * |
||
44 | * @return $this |
||
45 | */ |
||
46 | 1 | public function setPlatform($platform) |
|
51 | } |
||
52 |