Replies: 1 comment 2 replies
-
@freekmurze @rubenvanassche @willemvb @sebastiandedeyne @riasvdv @AlexVanderbist @jefvdv Can anybody help me ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
public function configurePackage(Package $package): void
{
$package
->name('laravel-responsecache')
->hasConfigFile()
->hasCommands([
ClearCommand::class,
]);
}
This method in ResponseCacheServiceProvider returns package with a command property.
While codes like this
php artisan responsecache:clear
command does not works.But if I set clear command like ,
$this->commands([
ClearCommand::class,
]);
it works fine.
I hope you can see the problem, btw I'm using v6.6.9 of the package.
Thanks for your help from now.
Beta Was this translation helpful? Give feedback.
All reactions