fix wrong variable names in PHPDoc
This commit is contained in:
parent
11f29f6d95
commit
f72dabb4eb
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue