Fix #20532: Add missing return statements in CacheController::actionFlushSchema, FixtureController::actionUnload, HelpController::actionIndex and ServeController::actionIndex

This commit is contained in:
Maksim Spirkov
2025-09-30 02:17:34 +04:00
committed by GitHub
parent 848cd97849
commit dba9e4d76d
8 changed files with 15 additions and 50 deletions

View File

@ -9,6 +9,7 @@ namespace yii\console\controllers;
use Yii;
use yii\console\Controller;
use yii\console\ExitCode;
use yii\helpers\Console;
/**
@ -87,6 +88,8 @@ class ServeController extends Controller
}
$this->runCommand($command);
return ExitCode::OK;
}
/**