| 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 Doba 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 | 1 | public function getDuration(): float |
|
| 92 | |||
| 93 | /** |
||
| 94 | * @return array|StdClass[] |
||
| 95 | */ |
||
| 96 | 1 | public function getResult(): array |
|
| 100 | |||
| 101 | } |
||
| 102 |
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.