| Total Complexity | 4 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 9 | class HoneybadgerCheckInCommand extends Command  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * The name and signature of the console command.  | 
            ||
| 13 | * "id" can be the check-in ID or the check-in slug.  | 
            ||
| 14 | *  | 
            ||
| 15 | * @var string  | 
            ||
| 16 | */  | 
            ||
| 17 |     protected $signature = 'honeybadger:checkin {id}'; | 
            ||
| 18 | |||
| 19 | /**  | 
            ||
| 20 | * The console command description.  | 
            ||
| 21 | *  | 
            ||
| 22 | * @var string  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $description = 'Send check-in to Honeybadger';  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * Execute the console command.  | 
            ||
| 28 | *  | 
            ||
| 29 | * @return mixed  | 
            ||
| 30 | */  | 
            ||
| 31 | public function handle(Reporter $honeybadger)  | 
            ||
| 39 | }  | 
            ||
| 40 | }  | 
            ||
| 41 | |||
| 42 | private function checkInIdOrSlug(): string  | 
            ||
| 49 |