芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/vendor/vonage/client-core/src/Voice/Endpoint/App.php
id = $user; } public static function factory(string $user): App { return new App($user); } /** * @return array{type: string, user: string} */ public function jsonSerialize(): array { return $this->toArray(); } /** * @return array{type: string, user: string} */ public function toArray(): array { return [ 'type' => 'app', 'user' => $this->id, ]; } public function getId(): string { return $this->id; } }