ミドルウェア関数でリクエスト メソッド (GET、POST、PUT、...) を取得することは可能ですか?
$myMiddleware = function (Request $request) {
// This is what I want to achieve
switch ($request->request->get('method') {
case 'GET':
// ...
break;
}
}
$app = new Application();
$app->before($myMiddleware);