make phpstan happy

This commit is contained in:
Andrew Dolgov 2023-04-09 21:29:16 +03:00
parent c1b3c99667
commit d7c070b22b
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
2 changed files with 9 additions and 3 deletions

View File

@ -52,6 +52,7 @@
header("Content-Type: text/json");
print Errors::to_json(Errors::E_UNAUTHORIZED);
$scope->getSpan()->setTag('error', Errors::E_UNAUTHORIZED);
$scope->close();
return;
}
@ -60,6 +61,8 @@
if (Config::is_migration_needed()) {
print Errors::to_json(Errors::E_SCHEMA_MISMATCH);
$scope->getSpan()->setTag('error', Errors::E_SCHEMA_MISMATCH);
$scope->close();
return;
}
@ -122,11 +125,14 @@
user_error("Refusing to invoke method $method of handler $op which starts with underscore.", E_USER_WARNING);
header("Content-Type: text/json");
print Errors::to_json(Errors::E_UNAUTHORIZED);
$scope->getSpan()->setTag('error', Errors::E_UNAUTHORIZED);
$scope->close();
return;
}
if ($override) {
/** @var Plugin|IHandler|ICatchall $handler */
$handler = $override;
} else {
$reflection = new ReflectionClass($op);

View File

@ -37,7 +37,7 @@ class Tracer {
/**
* @param string $name
* @param array<mixed> $options
* @param array<string>|array<string, array<string, mixed>> $options
* @param array<string> $args
* @return Scope
*/
@ -51,12 +51,12 @@ class Tracer {
/**
* @param string $name
* @param array<string> $options
* @param array<string>|array<string, array<string, mixed>> $options
* @param array<string> $args
* @return Scope
*/
public static function start(string $name, array $options = [], array $args = []) : Scope {
return self::get_instance()->_start($name, $options);
return self::get_instance()->_start($name, $options, $args);
}
public static function get_instance() : Tracer {