You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created an artisan command which has to fire some API POST requests. The problem is this block in Hmvc.php
// Masking route to allow testing with PHPUnit.if ( ! $originalRouteinstanceof Route)
{
$originalRoute = newRoute(new \Symfony\Component\HttpFoundation\Request());
}
It throws:
Missing argument 2 for Illuminate\Routing\Route::__construct(), called in /var/www/animekyun/vendor/teepluss/hmvc/src/Teepluss/Hmvc/Hmvc.php on line 91 and defined
I created an artisan command which has to fire some API POST requests. The problem is this block in Hmvc.php
It throws:
This is my fire method in the command:
For now I have removed that code block
The text was updated successfully, but these errors were encountered: