1
0
Fork 0

Add response for JSON only

This commit is contained in:
Philipp Holzer 2021-12-06 00:06:56 +01:00
commit fb1e8e75f5
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
3 changed files with 13 additions and 3 deletions

View file

@ -221,6 +221,16 @@ class ApiResponse extends Response
$this->addContent($return);
}
/**
* Wrapper around exit() for JSON only responses
*
* @param array $data
*/
public function exitWithJson(array $data)
{
$this->exit('content', ['content' => $data], static::TYPE_JSON);
}
/**
* Quit execution with the message that the endpoint isn't implemented
*