@@ -68,7 +68,7 @@ |
||
| 68 | 68 | * remove all user backends |
| 69 | 69 | * @since 8.0.0 |
| 70 | 70 | */ |
| 71 | - public function clearBackends() ; |
|
| 71 | + public function clearBackends(); |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * get a user by user id |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | */ |
| 62 | 62 | public function addEntityCollection($name, \Closure $entityExistsFunction) { |
| 63 | 63 | if (isset($this->collections[$name])) { |
| 64 | - throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"'); |
|
| 64 | + throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"'); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | $this->collections[$name] = $entityExistsFunction; |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * @deprecated 9.1.0 Use the AppFramework |
| 73 | 73 | */ |
| 74 | 74 | public static function register($method, $url, $action, $app, $authLevel = self::USER_AUTH, |
| 75 | - $defaults = array(), $requirements = array()){ |
|
| 75 | + $defaults = array(), $requirements = array()) { |
|
| 76 | 76 | \OC_API::register($method, $url, $action, $app, $authLevel, $defaults, $requirements); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -159,7 +159,7 @@ |
||
| 159 | 159 | * @return bool Returns false on error. |
| 160 | 160 | * @since 6.0.0 |
| 161 | 161 | */ |
| 162 | - public function addMultiple($names, $sync=false, $id = null); |
|
| 162 | + public function addMultiple($names, $sync = false, $id = null); |
|
| 163 | 163 | |
| 164 | 164 | /** |
| 165 | 165 | * Delete tag/object relations from the db |
@@ -57,6 +57,6 @@ |
||
| 57 | 57 | * @since 7.0.0 |
| 58 | 58 | */ |
| 59 | 59 | public function __toString() { |
| 60 | - return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; |
|
| 60 | + return __CLASS__.": [{$this->code}]: {$this->message}\n"; |
|
| 61 | 61 | } |
| 62 | 62 | } |
@@ -61,15 +61,15 @@ |
||
| 61 | 61 | */ |
| 62 | 62 | public function __construct($appName, |
| 63 | 63 | IRequest $request, |
| 64 | - $corsMethods='PUT, POST, GET, DELETE, PATCH', |
|
| 65 | - $corsAllowedHeaders='Authorization, Content-Type, Accept', |
|
| 66 | - $corsMaxAge=1728000){ |
|
| 64 | + $corsMethods = 'PUT, POST, GET, DELETE, PATCH', |
|
| 65 | + $corsAllowedHeaders = 'Authorization, Content-Type, Accept', |
|
| 66 | + $corsMaxAge = 1728000) { |
|
| 67 | 67 | parent::__construct($appName, $request, $corsMethods, |
| 68 | 68 | $corsAllowedHeaders, $corsMaxAge); |
| 69 | - $this->registerResponder('json', function ($data) { |
|
| 69 | + $this->registerResponder('json', function($data) { |
|
| 70 | 70 | return $this->buildOCSResponse('json', $data); |
| 71 | 71 | }); |
| 72 | - $this->registerResponder('xml', function ($data) { |
|
| 72 | + $this->registerResponder('xml', function($data) { |
|
| 73 | 73 | return $this->buildOCSResponse('xml', $data); |
| 74 | 74 | }); |
| 75 | 75 | } |
@@ -55,8 +55,8 @@ |
||
| 55 | 55 | * @deprecated 9.2.0 To implement an OCS endpoint extend the OCSController |
| 56 | 56 | */ |
| 57 | 57 | public function __construct($format, $statuscode, $message, |
| 58 | - $data=[], $itemscount='', |
|
| 59 | - $itemsperpage='') { |
|
| 58 | + $data = [], $itemscount = '', |
|
| 59 | + $itemsperpage = '') { |
|
| 60 | 60 | $this->format = $format; |
| 61 | 61 | $this->statuscode = $statuscode; |
| 62 | 62 | $this->message = $message; |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * @param int $statusCode the Http status code, defaults to 200 |
| 53 | 53 | * @since 6.0.0 |
| 54 | 54 | */ |
| 55 | - public function __construct($data=array(), $statusCode=Http::STATUS_OK) { |
|
| 55 | + public function __construct($data = array(), $statusCode = Http::STATUS_OK) { |
|
| 56 | 56 | $this->data = $data; |
| 57 | 57 | $this->setStatus($statusCode); |
| 58 | 58 | $this->addHeader('Content-Type', 'application/json; charset=utf-8'); |
@@ -67,8 +67,8 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function render() { |
| 69 | 69 | $response = json_encode($this->data, JSON_HEX_TAG); |
| 70 | - if($response === false) { |
|
| 71 | - throw new \Exception(sprintf('Could not json_encode due to invalid ' . |
|
| 70 | + if ($response === false) { |
|
| 71 | + throw new \Exception(sprintf('Could not json_encode due to invalid '. |
|
| 72 | 72 | 'non UTF-8 characters in the array: %s', var_export($this->data, true))); |
| 73 | 73 | } |
| 74 | 74 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | * @return JSONResponse Reference to this object |
| 83 | 83 | * @since 6.0.0 - return value was added in 7.0.0 |
| 84 | 84 | */ |
| 85 | - public function setData($data){ |
|
| 85 | + public function setData($data) { |
|
| 86 | 86 | $this->data = $data; |
| 87 | 87 | |
| 88 | 88 | return $this; |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @return array the data |
| 95 | 95 | * @since 6.0.0 |
| 96 | 96 | */ |
| 97 | - public function getData(){ |
|
| 97 | + public function getData() { |
|
| 98 | 98 | return $this->data; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | * @param array $headers additional key value based headers |
| 51 | 51 | * @since 8.0.0 |
| 52 | 52 | */ |
| 53 | - public function __construct($data=array(), $statusCode=Http::STATUS_OK, |
|
| 54 | - array $headers=array()) { |
|
| 53 | + public function __construct($data = array(), $statusCode = Http::STATUS_OK, |
|
| 54 | + array $headers = array()) { |
|
| 55 | 55 | $this->data = $data; |
| 56 | 56 | $this->setStatus($statusCode); |
| 57 | 57 | $this->setHeaders(array_merge($this->getHeaders(), $headers)); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * @return DataResponse Reference to this object |
| 65 | 65 | * @since 8.0.0 |
| 66 | 66 | */ |
| 67 | - public function setData($data){ |
|
| 67 | + public function setData($data) { |
|
| 68 | 68 | $this->data = $data; |
| 69 | 69 | |
| 70 | 70 | return $this; |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * @return array the data |
| 77 | 77 | * @since 8.0.0 |
| 78 | 78 | */ |
| 79 | - public function getData(){ |
|
| 79 | + public function getData() { |
|
| 80 | 80 | return $this->data; |
| 81 | 81 | } |
| 82 | 82 | |