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('zendframework/zend-text "^2.7"'); |
||
45 | |||
46 | $this->task( |
||
47 | 'Creating default logo configuration', |
||
48 | function () { |
||
49 | if (! File::exists(config_path('logo.php'))) { |
||
50 | return File::copy( |
||
51 | static::CONFIG_FILE, |
||
52 | $this->app->configPath('logo.php') |
||
53 | ); |
||
54 | } |
||
55 | |||
56 | return false; |
||
57 | } |
||
61 |