我正在测试Lumen 5.6 API。
这是我的路线:
$router->delete('/tournaments/{slug}', 'TournamentController@destroy');
使用Angular 6时,我没问题,路由正常,但是当我尝试使用以下方法对PHPUnit进行测试时:
$this->call('DELETE', '/tournaments/' . $tournament->slug);
我得到一个MethodNotAllowedHttpException
为什么?