From 054e25986123dafd052d1bbd6a35525412f4b4a1 Mon Sep 17 00:00:00 2001 From: Toir Tuychiev Date: Tue, 6 Apr 2021 14:33:16 +0500 Subject: [PATCH] Fixed typo in console/Application.php (#18596) --- framework/console/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/console/Application.php b/framework/console/Application.php index 51d81e43b5..b8c07cdee4 100644 --- a/framework/console/Application.php +++ b/framework/console/Application.php @@ -172,7 +172,7 @@ class Application extends \yii\base\Application * @param string $route the route that specifies the action. * @param array $params the parameters to be passed to the action * @return int|Response the result of the action. This can be either an exit code or Response object. - * Exit code 0 means normal, and other values mean abnormal. Exit code of `null` is treaded as `0` as well. + * Exit code 0 means normal, and other values mean abnormal. Exit code of `null` is treated as `0` as well. * @throws Exception if the route is invalid */ public function runAction($route, $params = [])