diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-18 14:31:28 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-18 14:31:28 +0200 |
commit | f72dabb4eb682d6ba82b5e946b7dbf5ddcdab291 (patch) | |
tree | 601badb20f110362ef7a8492fe14fb7e509e3880 /lib/public/appframework | |
parent | 11f29f6d9519e577eb8d089d518f0b0f7cfa2654 (diff) | |
download | nextcloud-server-f72dabb4eb682d6ba82b5e946b7dbf5ddcdab291.tar.gz nextcloud-server-f72dabb4eb682d6ba82b5e946b7dbf5ddcdab291.zip |
fix wrong variable names in PHPDoc
Diffstat (limited to 'lib/public/appframework')
-rw-r--r-- | lib/public/appframework/apicontroller.php | 4 | ||||
-rw-r--r-- | lib/public/appframework/ocscontroller.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/appframework/apicontroller.php b/lib/public/appframework/apicontroller.php index 0af37f3a616..90eea47d730 100644 --- a/lib/public/appframework/apicontroller.php +++ b/lib/public/appframework/apicontroller.php @@ -45,10 +45,10 @@ abstract class ApiController extends Controller { * constructor of the controller * @param string $appName the name of the app * @param IRequest $request an instance of the request - * @param string $corsMethods: comma seperated string of HTTP verbs which + * @param string $corsMethods comma seperated string of HTTP verbs which * should be allowed for websites or webapps when calling your API, defaults to * 'PUT, POST, GET, DELETE, PATCH' - * @param string $corsAllowedHeaders: comma seperated string of HTTP headers + * @param string $corsAllowedHeaders comma seperated string of HTTP headers * which should be allowed for websites or webapps when calling your API, * defaults to 'Authorization, Content-Type, Accept' * @param int $corsMaxAge number in seconds how long a preflighted OPTIONS diff --git a/lib/public/appframework/ocscontroller.php b/lib/public/appframework/ocscontroller.php index 93077586f43..602731fe761 100644 --- a/lib/public/appframework/ocscontroller.php +++ b/lib/public/appframework/ocscontroller.php @@ -42,10 +42,10 @@ abstract class OCSController extends ApiController { * constructor of the controller * @param string $appName the name of the app * @param IRequest $request an instance of the request - * @param string $corsMethods: comma seperated string of HTTP verbs which + * @param string $corsMethods comma seperated string of HTTP verbs which * should be allowed for websites or webapps when calling your API, defaults to * 'PUT, POST, GET, DELETE, PATCH' - * @param string $corsAllowedHeaders: comma seperated string of HTTP headers + * @param string $corsAllowedHeaders comma seperated string of HTTP headers * which should be allowed for websites or webapps when calling your API, * defaults to 'Authorization, Content-Type, Accept' * @param int $corsMaxAge number in seconds how long a preflighted OPTIONS |