1 | <?php |
||
9 | class DbBackupCommand extends Command |
||
10 | { |
||
11 | protected $backup; |
||
12 | protected $storage; |
||
13 | |||
14 | /** |
||
15 | * The name and signature of the console command. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $signature = 'dbbackup:run'; |
||
20 | |||
21 | /** |
||
22 | * The console command description. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Create Database backup.'; |
||
27 | |||
28 | /** |
||
29 | * Create a new command instance. |
||
30 | * |
||
31 | * @return void |
||
|
|||
32 | */ |
||
33 | public function __construct(Backup $backup, Storage $storage) |
||
39 | |||
40 | /** |
||
41 | * Execute the console command. |
||
42 | * |
||
43 | * @return mixed |
||
44 | */ |
||
45 | public function handle() |
||
56 | } |
||
57 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.