1 | <?php |
||
9 | class RequestPostEvent implements Serializable |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string Nazev funkce volane pomoci SOAP requestu |
||
14 | */ |
||
15 | private $fname; |
||
16 | |||
17 | /** |
||
18 | * Parametry SOAP requestu na server |
||
19 | * |
||
20 | * @var array<int, mixed> |
||
21 | */ |
||
22 | private $args; |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @var float Pocet sekund trvani pozadvku |
||
27 | */ |
||
28 | private $time; |
||
29 | |||
30 | /** |
||
31 | * @var array|stdClass[] |
||
32 | */ |
||
33 | private $result; |
||
34 | |||
35 | /** |
||
36 | * @param string $fname Nazev volane funkce |
||
37 | * @param array<int, mixed> $args Argumenty pozadavku |
||
38 | * @param array|StdClass[] $result |
||
39 | */ |
||
40 | 1 | public function __construct( |
|
51 | |||
52 | 1 | public function serialize(): string |
|
62 | |||
63 | /** |
||
64 | * @param string $data |
||
65 | */ |
||
66 | 1 | public function unserialize($data): void |
|
74 | |||
75 | 1 | public function getFname(): string |
|
79 | |||
80 | /** |
||
81 | * @return array<int, mixed> |
||
|
|||
82 | */ |
||
83 | 1 | public function getArgs(): array |
|
87 | |||
88 | /** |
||
89 | * Pocet sekund trvani pozadvku |
||
90 | */ |
||
91 | 1 | public function getDuration(): float |
|
95 | |||
96 | /** |
||
97 | * @return array|StdClass[] |
||
98 | */ |
||
99 | 1 | public function getResult(): array |
|
103 | |||
104 | } |
||
105 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.