Conditions | 2 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function install(): void |
||
43 | { |
||
44 | $this->require('hmazter/laravel-schedule-list "^1.2"'); |
||
45 | |||
46 | $this->task( |
||
47 | 'Creating default schedule list configuration', |
||
48 | function () { |
||
49 | if (! File::exists(config_path('schedule-list.php'))) { |
||
50 | return File::copy( |
||
51 | static::CONFIG_FILE, |
||
52 | $this->app->configPath('schedule-list.php') |
||
53 | ); |
||
54 | } |
||
55 | |||
56 | return false; |
||
57 | } |
||
61 |