Some OCS result psalm fixes

For #25641

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-02-15 10:03:48 +01:00
parent 84de7a8d63
commit 11a9bd3e19
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ class Result {
$meta['status'] = $this->succeeded() ? 'ok' : 'failure';
$meta['statuscode'] = $this->statusCode;
$meta['message'] = $this->message;
if (isset($this->items)) {
if ($this->items !== null) {
$meta['totalitems'] = $this->items;
}
if (isset($this->perPage)) {
if ($this->perPage !== null) {
$meta['itemsperpage'] = $this->perPage;
}
return $meta;