This commit is contained in:
2021-04-25 11:27:13 +08:00
parent 77a6445eea
commit be8faa5cb0
6 changed files with 374 additions and 371 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ abstract class HttpService extends Component
if (property_exists($this, $name)) {
return $this->$name;
}
$message = sprintf('method %s::%s not exists.', get_called_class(), $name);
$message = sprintf('method %s::%s not exists.', static::class, $name);
throw new Exception($message);
}