Fix typo in description codesnippet (#19873)

This commit is contained in:
Andrii Dembitskyi
2023-06-30 16:58:04 +03:00
committed by GitHub
parent 85171844cf
commit b073daa8f0

View File

@ -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.