1 | <?php |
||
11 | class Mysql extends Command |
||
12 | { |
||
13 | /** |
||
14 | * The console command name. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $name = 'mysql'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'mysql console'; |
||
26 | |||
27 | /** |
||
28 | * $connection. |
||
29 | * |
||
30 | * @var \Illuminate\Database\DatabaseManager |
||
31 | */ |
||
32 | protected $databaseManager; |
||
33 | |||
34 | /** |
||
35 | * __construct. |
||
36 | * |
||
37 | * @param \Illuminate\Database\DatabaseManager $databaseManager |
||
38 | */ |
||
39 | public function __construct(DatabaseManager $databaseManager) |
||
44 | |||
45 | /** |
||
46 | * fire. |
||
47 | */ |
||
48 | public function handle() |
||
56 | |||
57 | /** |
||
58 | * Get the console command options. |
||
59 | * |
||
60 | * @return array |
||
61 | */ |
||
62 | protected function getOptions(): array |
||
68 | } |
||
69 |
This function has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed from the class and what other function to use instead.