1 | <?php |
||
12 | class App |
||
13 | { |
||
14 | /** @var string */ |
||
15 | private $xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"; |
||
16 | /** @var string */ |
||
17 | private $urlSchemaFormat = 'http://schemas.openxmlformats.org/officeDocument/2006'; |
||
18 | /** @var int */ |
||
19 | private $totalTime = 0; |
||
20 | |||
21 | /** |
||
22 | * App constructor. |
||
23 | * |
||
24 | * @param int $totalTime |
||
25 | */ |
||
26 | public function __construct($totalTime = 0) |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function buildAppXML() |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | private function getAppProperties() |
||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | private function getTotalTime() |
||
64 | } |
||
65 |