| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function handle(): void |
||
| 31 | { |
||
| 32 | $this->warn($this->description); |
||
| 33 | |||
| 34 | $this->call('vendor:publish', ['--tag' => 'cortex-foundation-lang', '--force' => $this->option('force')]); |
||
| 35 | $this->call('vendor:publish', ['--tag' => 'cortex-foundation-views', '--force' => $this->option('force')]); |
||
| 36 | $this->call('vendor:publish', ['--tag' => 'cortex-foundation-config', '--force' => $this->option('force')]); |
||
| 37 | $this->call('vendor:publish', ['--tag' => 'cortex-foundation-migrations', '--force' => $this->option('force')]); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |