1 | <?php |
||
15 | class Device |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $versaoApp; |
||
21 | |||
22 | /** |
||
23 | * Device constructor. |
||
24 | */ |
||
25 | public function __construct() |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getVersaoApp() |
||
37 | |||
38 | /** |
||
39 | * @param string $versaoApp |
||
40 | * @return Device |
||
41 | */ |
||
42 | public function setVersaoApp($versaoApp) |
||
47 | |||
48 | |||
49 | } |