Blame view

app/Console/Kernel.php 574 Bytes
2dde15d57   Андрей Ларионов   Утверждение переноса
1
2
3
4
5
6
7
8
9
  <?php
  
  namespace App\Console;
  
  use Illuminate\Console\Scheduling\Schedule;
  use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
  
  class Kernel extends ConsoleKernel
  {
2dde15d57   Андрей Ларионов   Утверждение переноса
10
11
      protected function schedule(Schedule $schedule)
      {
ab181e741   Fedor   task-132985 autol...
12
13
          $schedule->command('vacancy:delete_expired')->dailyAt('00:00');
          $schedule->command('vacancy:dispatch')->everyMinute();
8ec6b4403   Fedor   task-132985 autor...
14
          $schedule->command('resume:dispatch')->everyMinute();
2dde15d57   Андрей Ларионов   Утверждение переноса
15
      }
2dde15d57   Андрей Ларионов   Утверждение переноса
16
17
18
19
20
21
22
      protected function commands()
      {
          $this->load(__DIR__.'/Commands');
  
          require base_path('routes/console.php');
      }
  }