Files
firefly-iii/app/Console/Commands/Integrity/ReportSkeleton.php.stub

38 lines
670 B
Plaintext
Raw Normal View History

2019-03-18 16:53:05 +01:00
<?php
2019-03-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Integrity;
2019-03-18 16:53:05 +01:00
use Illuminate\Console\Command;
/**
2019-03-23 08:10:59 +01:00
* Class ReportSkeleton
2019-03-18 16:53:05 +01:00
*/
2019-03-23 08:10:59 +01:00
class ReportSkeleton extends Command
2019-03-18 16:53:05 +01:00
{
/**
* The console command description.
*
* @var string
*/
2019-03-23 08:10:59 +01:00
protected $description = 'DESCRIPTION HERE';
2019-03-18 16:53:05 +01:00
/**
* The name and signature of the console command.
*
* @var string
*/
2019-03-23 08:10:59 +01:00
protected $signature = 'firefly-iii:INT_COMMAND';
2019-03-18 16:53:05 +01:00
/**
* Execute the console command.
*
* @return int
*/
public function handle(): int
{
2019-03-23 08:10:59 +01:00
//
2019-03-20 18:47:51 +01:00
$this->warn('Congrats, you found the skeleton command. Boo!');
2019-03-18 16:53:05 +01:00
return 0;
}
}