From f72dabb4eb682d6ba82b5e946b7dbf5ddcdab291 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sat, 18 Apr 2015 14:31:28 +0200 Subject: [PATCH] fix wrong variable names in PHPDoc --- lib/public/appframework/apicontroller.php | 4 ++-- 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 -- 2.39.5