mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
39 lines
681 B
Plaintext
39 lines
681 B
Plaintext
<?php
|
|
|
|
namespace FireflyIII\Console\Commands\Correction;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
/**
|
|
* Class CorrectionSkeleton
|
|
*/
|
|
class CorrectionSkeleton extends Command
|
|
{
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'DESCRIPTION HERE';
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'firefly-iii:CORR_COMMAND';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
//
|
|
$this->warn('Congrats, you found the skeleton command. Boo!');
|
|
|
|
|
|
return 0;
|
|
}
|
|
}
|