mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-29 22:47:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			462 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			462 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FireflyIII\Console\Commands\Integrity;
 | |
| 
 | |
| use Illuminate\Console\Command;
 | |
| 
 | |
| class ReportSkeleton extends Command
 | |
| {
 | |
| 
 | |
|     protected $description = 'DESCRIPTION HERE';
 | |
| 
 | |
|     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;
 | |
|     }
 | |
| }
 |