#!/usr/bin/env php * * SPDX-License-Identifier: GPL-3.0-or-later * * FILE INFORMATION * DEFGROUP: moko-platform.CLI * INGROUP: moko-platform * REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform * PATH: /cli/release_cascade.php * VERSION: 09.21.07 * BRIEF: DEPRECATED — cascade behavior removed. Each release stream is independent. */ declare(strict_types=1); require_once __DIR__ . '/../lib/Enterprise/CliFramework.php'; use MokoEnterprise\CliFramework; class ReleaseCascadeCli extends CliFramework { protected function configure(): void { $this->setDescription('DEPRECATED — cascade behavior removed'); } protected function run(): int { $this->log('INFO', 'No-op (cascade behavior removed — each stream is independent)'); return 0; } } $app = new ReleaseCascadeCli(); exit($app->execute());