mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			722 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			722 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace FireflyIII\Console\Commands\Integrity;
 | 
						|
 | 
						|
use Illuminate\Console\Command;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class ReportSkeleton
 | 
						|
 * TODO DONT FORGET TO ADD THIS TO THE DOCKER BUILD
 | 
						|
 */
 | 
						|
class ReportSkeleton 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:INT_COMMAND';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the console command.
 | 
						|
     *
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function handle(): int
 | 
						|
    {
 | 
						|
        //
 | 
						|
        $this->warn('Congrats, you found the skeleton command. Boo!');
 | 
						|
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
}
 |