Answer the question
In order to leave comments, you need to log in
Why don't console commands work?
There is a command:
class DownloadSource extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'convertor:download';
php artisan converter:download
There are no commands defined in the "convertor" namespace.
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
DownloadSource::class,
ConvertSource::class,
ConvertSourceXML::class,
ConvertSourceYML::class
];
Answer the question
In order to leave comments, you need to log in
I figured it out, the error was in the environment itself, according to the code, everything was valid anyway.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question