Skip to content

Commit

Permalink
Cria BaseabotCron
Browse files Browse the repository at this point in the history
  • Loading branch information
gabsdocompiuter committed Feb 7, 2021
1 parent 98f1b82 commit bec856e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/Console/Commands/BaseabotCron.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
namespace App\Console\Commands;

use Illuminate\Console\Command;

class BaseabotCron extends Command
{
protected $signature = 'baseabot:cron';

protected $description = 'Baseabot';

public function __construct()
{
parent::__construct();
}

public function handle()
{
return 0;
}
}

0 comments on commit bec856e

Please sign in to comment.