Есть команда:
class DownloadSource extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'convertor:download';
При выполнении
php artisan convertor:download
Ошибка
There are no commands defined in the "convertor" namespace.
Комманду в App\Console\Kernal зарегистрировал:
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
DownloadSource::class,
ConvertSource::class,
ConvertSourceXML::class,
ConvertSourceYML::class
];
Laravel 5.6