*/ class MiddlewareRegistration extends ServiceRegistration { private bool $global; public function __construct(string $appId, string $service, bool $global) { parent::__construct($appId, $service); $this->global = $global; } public function isGlobal(): bool { return $this->global; } }