1
0
Fork 0

Replace DI::apiResponse()->exit() with $this->response->exit()

This commit is contained in:
Philipp Holzer 2021-11-28 15:05:42 +01:00 committed by Hypolite Petovan
commit a88cc8d5c8
22 changed files with 26 additions and 26 deletions

View file

@ -51,6 +51,6 @@ class Lookup extends BaseApi
throw new NotFoundException();
}
DI::apiResponse()->exit('users', ['user' => $users], $this->parameters['extension'] ?? null);
$this->response->exit('users', ['user' => $users], $this->parameters['extension'] ?? null);
}
}