Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class Tinker extends BaseCommand |
||
10 | { |
||
11 | /** |
||
12 | * The signature of the command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'php:tinker'; |
||
17 | |||
18 | /** |
||
19 | * The description of the command. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Open tinker in a Laravel project'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function handle(): void |
||
48 |