| Total Complexity | 9 |
| Total Lines | 57 |
| Duplicated Lines | 0 % |
| Coverage | 92% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class DownloadLatestMyriadContacts extends Command |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The name and signature of the console command. |
||
| 13 | * |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $signature = 'myriad-download:contacts:latest |
||
| 17 | {start? : Start contact ID, if empty - will be used latest from database} |
||
| 18 | {--buffer=10 : Buffer items count} |
||
| 19 | '; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The console command description. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $description = 'Download/Update latest myriad contacts'; |
||
| 27 | |||
| 28 | 1 | public function handle() |
|
| 68 |