Last active
January 3, 2019 17:32
-
-
Save winni4eva/034cc4a24a8cf2ce21515f77372de132 to your computer and use it in GitHub Desktop.
Fetch User Info Signature and Description
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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