mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
915 B
PHP
39 lines
915 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Services\Internal\SoftwareUpdateService;
|
|
use Illuminate\Console\Command;
|
|
|
|
class ComposerPostInstallCommand extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'app:composer-post-install-command';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Post composer install/update housekeeping (refreshes the software update cache)';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
try {
|
|
SoftwareUpdateService::get(true);
|
|
$this->info('Software update cache refreshed.');
|
|
} catch (\Throwable $e) {
|
|
$this->warn('Could not refresh software update cache: '.$e->getMessage());
|
|
}
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
}
|