laravel - How Can I use contructor in kernel.php file?

Solution:

public function __construct(Application $app, Dispatcher $events, TradeConfigurationRepository $tradeConfigurationRepository)
{
    $this->tradeConfigurationRepository = $tradeConfigurationRepository;
    parent::__construct($app, $events);
}

This class extends ConsoleKernel. You have to add all params from the parent constructor to your and then add repo param. You can't set the interface as type hinting in the constructor, because it has to create an object from type hinting, and it's impossible with the interface. Use certain class instead of interface. Have a look at Dependency injection description

Answer

Solution:

I figured out the problem a couple of days ago, here is how you can solve this problem

<?php

namespace App\Console;

use App\Console\Commands\CrawlUSD;
use App\Console\Commands\CrawlUSDT;
use App\Repository\Contracts\Trade\TradeConfigurationRepositoryInterface;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        CrawlUSD::class,
        CrawlUSDT::class,
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $repo = $this->app->make(TradeConfigurationRepositoryInterface::class);

        $schedule->command('crawl:USDT')->{$repo->getTheNewestConfigForUSDT()->trade_configuration_update_per_minutes}();

        $schedule->command('crawl:USD')->{$repo->getTheNewestConfigForUSD()->trade_configuration_update_per_minutes}();
    }

    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__.'/Commands');

        require base_path('routes/console.php');
    }
}


Source