39 lines
952 B
PHP
39 lines
952 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* 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.24.00
|
|
* 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());
|