Skip to content

Commit

Permalink
change response data array to any
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywhalecc committed Feb 12, 2023
1 parent 7733775 commit f9a0be8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/OneBot/V12/Object/ActionResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ class ActionResponse implements \JsonSerializable, \IteratorAggregate

public int $retcode = 0;

public array $data = [];
/**
* @var mixed
*/
public $data = [];

public string $message = '';

Expand Down

0 comments on commit f9a0be8

Please sign in to comment.