We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 4 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class PublishAssets extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'backpack:publish-assets'; |
||
17 | |||
18 | /** |
||
19 | * The console command description. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Publish new CSS and JS assets (will override existing ones).'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | * |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function handle() |
||
31 | { |
||
32 | $this->runConsoleCommand(['php', 'artisan', 'vendor:publish', '--provider=Backpack\CRUD\BackpackServiceProvider', '--tag=public', '--force']); |
||
|
|||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Run a shell command in a separate process. |
||
37 | * |
||
38 | * @param string $command Text to be executed. |
||
39 | * @return void |
||
40 | */ |
||
41 | private function runConsoleCommand($command) |
||
55 | } |
||
56 | } |
||
58 |