我正在努力弄清楚如何构建我的代码,以便 phpDocumentor 可以使用代码块。
/**
* GET -- Book, either filtered by id or a full list.
*
* @param SlimApplication $app The application object instance.
* @param integer $id The id of the book
*/
$callbackFunction = function($id) use ($app)
{
//some functionality here.
};
$app->get('/books(/:id)', $callbackFunction );
我可能应该继续使用内联use
语句,这样我就可以使用$app
.
有人有什么建议吗?