This commit is contained in:
2025-02-24 17:08:40 +08:00
parent 97d1c32310
commit dd96d653d1
3 changed files with 41 additions and 54 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace wchat\wx\V3\Libs;
use Arrayable;
readonly class TransferSceneReportInfo implements Arrayable
{
public function __construct(
public string $info_type,
public string $info_content,
)
{
}
/**
* @return array
*/
public function toArray(): array
{
return [
"info_type" => $this->info_type,
"info_content" => $this->info_content
];
}
}