forked from fa/breadcrumb-the-shire
- remove legacy bin/module-*.php and bin/doctor.php entry scripts - move module/doctor execution into class-based runners under lib/Console - add stable JSON output for doctor and module:sync - introduce bin/dev for init/up/down/logs/console/qa workflow - update DI wiring, phpstan scan config, tests, and docs to new CLI contract
36 lines
914 B
PHP
36 lines
914 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Console\Commands\Module;
|
|
|
|
final class AssetsSyncCommand extends AbstractModuleCommand
|
|
{
|
|
public function name(): string
|
|
{
|
|
return 'module:assets-sync';
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return 'Publish module web assets to web/modules/';
|
|
}
|
|
|
|
public function execute(array $args, array $options): int
|
|
{
|
|
$result = $this->moduleRunner()->assetsSync();
|
|
fwrite(STDOUT, sprintf(
|
|
"module-assets-sync: mode=%s created=%d updated=%d removed=%d unchanged=%d\n",
|
|
$result['mode'],
|
|
$result['created'],
|
|
$result['updated'],
|
|
$result['removed'],
|
|
$result['unchanged']
|
|
));
|
|
|
|
if ($result['message'] !== 'module-assets-sync: ok') {
|
|
fwrite(STDOUT, $result['message'] . PHP_EOL);
|
|
}
|
|
|
|
return (int) $result['exit_code'];
|
|
}
|
|
}
|