1 | <?php |
||
9 | class ExpiringVisits extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'visits:expiring'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'gets a list of visitation rights that will expire in the next week.'; |
||
24 | |||
25 | protected $visits; |
||
26 | |||
27 | /** |
||
28 | * Create a new command instance. |
||
29 | */ |
||
30 | 2 | public function __construct() |
|
34 | |||
35 | /** |
||
36 | * Execute the console command. |
||
37 | * |
||
38 | * @return mixed |
||
39 | */ |
||
40 | 2 | public function handle() |
|
52 | |||
53 | 2 | public function getList() |
|
57 | } |
||
58 |