From d52c1237ca2e72d2bc56d2ce98d6d6e85a1646bf Mon Sep 17 00:00:00 2001 From: Anton Date: Tue, 30 Nov 2021 17:12:53 +0300 Subject: [PATCH] Update Controller phpdoc (#19052) --- framework/console/Controller.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/framework/console/Controller.php b/framework/console/Controller.php index 6fb573db94..a3044c7641 100644 --- a/framework/console/Controller.php +++ b/framework/console/Controller.php @@ -28,12 +28,9 @@ use yii\helpers\Inflector; * where `` is a route to a controller action and the params will be populated as properties of a command. * See [[options()]] for details. * - * @property-read string $help This property is read-only. - * @property-read string $helpSummary This property is read-only. - * @property-read array $passedOptionValues The properties corresponding to the passed options. This property - * is read-only. - * @property-read array $passedOptions The names of the options passed during execution. This property is - * read-only. + * @property-read string $helpSummary The one-line short summary describing this controller. + * @property-read array $passedOptionValues The properties corresponding to the passed options. + * @property-read array $passedOptions The names of the options passed during execution. * @property Request $request * @property Response $response *