| Total Complexity | 4 |
| Total Lines | 57 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class ProxyHealthCheckCommand extends Command |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The console command name. |
||
| 13 | * |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $name = 'proxy:proxyhealthcheckcommand'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The console command description. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $description = 'Command description.'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create a new command instance. |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function __construct() |
||
| 31 | { |
||
| 32 | parent::__construct(); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute the console command. |
||
| 37 | * |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function handle() |
||
| 41 | { |
||
| 42 | // |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the console command arguments. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | protected function getArguments() |
||
| 51 | { |
||
| 52 | return [ |
||
| 53 | ['example', InputArgument::REQUIRED, 'An example argument.'], |
||
| 54 | ]; |
||
| 55 | } |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Get the console command options. |
||
| 59 | * |
||
| 60 | * @return array |
||
| 61 | */ |
||
| 62 | protected function getOptions() |
||
| 66 | ]; |
||
| 67 | } |
||
| 68 | } |
||
| 69 |