['attributes' => $body]]; } return $this->call( $this->controller, $this->actor, $queryParams, $body ); } public function call(string $controller, User $actor = null, array $queryParams = [], array $body = []): ResponseInterface { /** @var Client $api */ $api = $this->app()->getContainer()->make(Client::class); return $api->send($controller, $actor ?? new Guest, $queryParams, $body); } }