Skip to content
Snippets Groups Projects
Commit 84607db2 authored by Tom Needham's avatar Tom Needham
Browse files

Merge pull request #6988 from owncloud/oc_api_fix_warinigs

[ocs API] getData() always needs to return an array
parents eba1d574 dc53c83e
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,13 @@ class OC_OCS_Result{
* @param $data mixed the data to return
*/
public function __construct($data=null, $code=100, $message=null) {
if ($data === null) {
$this->data = array();
} elseif (!is_array($data)) {
$this->data = array($this->data);
} else {
$this->data = $data;
}
$this->statusCode = $code;
$this->message = $message;
}
......@@ -79,7 +85,7 @@ class OC_OCS_Result{
/**
* get the result data
* @return array|string|int
* @return array
*/
public function getData() {
return $this->data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment