Request Method

$method = $request->method(); // verify that the HTTP verb matches a given string if ($request->isMethod('post')) { // } 
Comments