我的 Laravel 控制器有一个索引方法,它接受一个可选的查询字符串参数。
这应该如何在方法的 PHPDoc 块中表示?
雇主控制器.php:
/**
* @param Request $request
* @return Response
* Returns list of Employers
*/
public function index(Request $request) {
// This is the optional parameter which needs to be represented
// in the PHPDoc block
$collectiveAgreement = $request->query('collective_agreement');
...
}
撒科打诨
三国纷争