From b073daa8f0e9ea1260cb2f609ba0b811a16f672d Mon Sep 17 00:00:00 2001 From: Andrii Dembitskyi Date: Fri, 30 Jun 2023 16:58:04 +0300 Subject: [PATCH] Fix typo in description codesnippet (#19873) --- framework/base/Configurable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/base/Configurable.php b/framework/base/Configurable.php index 9982d6f627..b44a082841 100644 --- a/framework/base/Configurable.php +++ b/framework/base/Configurable.php @@ -15,7 +15,7 @@ namespace yii\base; * like the following: * * ```php - * public function __constructor($param1, $param2, ..., $config = []) + * public function __construct($param1, $param2, ..., $config = []) * ``` * * That is, the last parameter of the constructor must accept a configuration array.