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

27 lines
462 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 extends Command
2019-03-18 16:53:05 +01:00
{
2023-11-05 09:54:53 +01:00
2019-03-23 08:10:59 +01:00
protected $description = 'DESCRIPTION HERE';
2023-11-05 09:54:53 +01:00
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;
}
}