fix: xmlrpc message args (#1714)

This commit is contained in:
joyqi
2024-01-22 14:36:10 +08:00
committed by GitHub
parent 99ffd36648
commit d0b62eabe9
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class Value
* @param mixed $data
* @param string|null $type
*/
public function __construct($data, ?string $type)
public function __construct($data, ?string $type = null)
{
$this->data = $data;
if (!$type) {