for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bantenprov\Anggaran\Console\Commands;
use Illuminate\Console\Command;
/**
* The AnggaranCommand class.
*
* @package Bantenprov\Anggaran
* @author bantenprov <[email protected]>
*/
class AnggaranCommand extends Command
{
* The name and signature of the console command.
* @var string
protected $signature = 'bantenprov:anggaran';
* The console command description.
protected $description = 'Demo command for Bantenprov\Anggaran package';
* Create a new command instance.
* @return void
public function __construct()
parent::__construct();
}
* Execute the console command.
* @return mixed
public function handle()
$this->info('Welcome to command for Bantenprov\Anggaran package');