Skip to content

Instantly share code, notes, and snippets.

@winni4eva
Last active January 3, 2019 17:32
Show Gist options
  • Save winni4eva/034cc4a24a8cf2ce21515f77372de132 to your computer and use it in GitHub Desktop.
Save winni4eva/034cc4a24a8cf2ce21515f77372de132 to your computer and use it in GitHub Desktop.
Fetch User Info Signature and Description
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class FetchUsersInfo extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'users:fetch';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Fetch app user information';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment