Update client API endpoints to not use deprecated function

This commit is contained in:
Dane Everitt 2019-09-05 21:41:20 -07:00
parent 7543ef085d
commit b99ea53ca1
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 74 additions and 58 deletions

View file

@ -31,15 +31,14 @@ class ResourceUtilizationController extends ClientApiController
* Return the current resource utilization for a server.
*
* @param \Pterodactyl\Http\Requests\Api\Client\Servers\GetServerRequest $request
* @param \Pterodactyl\Models\Server $server
* @return array
*
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
*/
public function __invoke(GetServerRequest $request): array
public function __invoke(GetServerRequest $request, Server $server): array
{
$stats = $this->repository
->setServer($request->getModel(Server::class))
->getDetails();
$stats = $this->repository->setServer($server)->getDetails();
return $this->fractal->item($stats)
->transformWith($this->getTransformer(StatsTransformer::class))