| Total Complexity | 4 | 
| Total Lines | 43 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 11 | class CheckInvitation extends Command  | 
            ||
| 12 | { | 
            ||
| 13 | /**  | 
            ||
| 14 | * The name and signature of the console command.  | 
            ||
| 15 | *  | 
            ||
| 16 | * @var string  | 
            ||
| 17 | */  | 
            ||
| 18 |     protected $signature = 'invites:check {code : The invitation code} {email? : Email ID to check against}'; | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * The console command description.  | 
            ||
| 22 | *  | 
            ||
| 23 | * @var string  | 
            ||
| 24 | */  | 
            ||
| 25 | protected $description = 'Check the validity of the given code';  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * Create a new command instance.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @return void  | 
            ||
| 31 | */  | 
            ||
| 32 | public function __construct()  | 
            ||
| 35 | }  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * Execute the console command.  | 
            ||
| 39 | *  | 
            ||
| 40 | * @return mixed  | 
            ||
| 41 | */  | 
            ||
| 42 | public function handle()  | 
            ||
| 57 |