Dingo\Api\Http\Response\Factory::errorMethodNotAllowed PHP Method

errorMethodNotAllowed() public method

Return a 405 method not allowed error.
public errorMethodNotAllowed ( string $message = 'Method Not Allowed' ) : void
$message string
return void
    public function errorMethodNotAllowed($message = 'Method Not Allowed')
    {
        $this->error($message, 405);
    }