ArcherZdip /
laravel-identity
| 1 | <?php |
||||
| 2 | |||||
| 3 | namespace ArcherZdip\Identity\Console; |
||||
| 4 | |||||
| 5 | use Illuminate\Console\Command; |
||||
| 6 | |||||
| 7 | class IdentityGetCommand extends Command |
||||
| 8 | { |
||||
| 9 | /** |
||||
| 10 | * The name and signature of the console command. |
||||
| 11 | * |
||||
| 12 | * @var string |
||||
| 13 | */ |
||||
| 14 | protected $signature = 'identity:get |
||||
| 15 | {--l|limit= : Get identity number} |
||||
| 16 | {--P|province= : Set province,like `北京市`} |
||||
| 17 | {--S|sex= : Set Sex,like `男`} |
||||
| 18 | {--B|birth= : Set birth,like xxxx-xx-xx}'; |
||||
| 19 | |||||
| 20 | /** |
||||
| 21 | * The console command description. |
||||
| 22 | * |
||||
| 23 | * @var string |
||||
| 24 | */ |
||||
| 25 | protected $description = 'Get Chinese ID Number.'; |
||||
| 26 | |||||
| 27 | /** |
||||
| 28 | * Create a new command instance. |
||||
| 29 | * |
||||
| 30 | * @return void |
||||
| 31 | */ |
||||
| 32 | public function __construct() |
||||
| 33 | { |
||||
| 34 | parent::__construct(); |
||||
| 35 | } |
||||
| 36 | |||||
| 37 | /** |
||||
| 38 | * Execute the console command. |
||||
| 39 | * |
||||
| 40 | * @return mixed |
||||
| 41 | */ |
||||
| 42 | public function handle() |
||||
| 43 | { |
||||
| 44 | $limit = $this->option('limit'); |
||||
| 45 | $province = $this->option('province'); |
||||
| 46 | $sex = $this->option('sex'); |
||||
| 47 | $birth = $this->option('birth'); |
||||
| 48 | |||||
| 49 | if (is_null($limit)) { |
||||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||||
| 50 | $this->info( app('identity_faker')->province($province) |
||||
|
0 ignored issues
–
show
The function
app was not found. Maybe you did not declare it correctly or list all dependencies?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||
| 51 | ->sex($sex)->birth($birth)->one() ); |
||||
| 52 | } else { |
||||
| 53 | $ids = app('identity_faker')->province($province) |
||||
| 54 | ->sex($sex)->birth($birth)->limit($limit)->get(); |
||||
| 55 | |||||
| 56 | foreach ($ids as $id) { |
||||
| 57 | $this->info($id); |
||||
| 58 | } |
||||
| 59 | } |
||||
| 60 | } |
||||
| 61 | } |
||||
| 62 |