diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a7fc874..b7aa8213b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ Yii Framework 2 debug extension Change Log ========================================== -2.1.26 under development +2.1.26 February 13, 2025 ------------------------ -- Enh #459: Add `yii\debug\Module::$authManager` to select RBAC manager used by UserPanel (default is `authManager`) (jafaripur) -- Enh #430: Allow to configure toolbar position via `Module::$toolbarPosition` property (sasha-x) - Bug #528: Fix `yii\debug\Panel::getTraceLine()` to handle backtrace for internal PHP functions (zymeli) +- Enh #430: Allow to configure toolbar position via `Module::$toolbarPosition` property (sasha-x) +- Enh #459: Add `yii\debug\Module::$authManager` to select RBAC manager used by UserPanel (default is `authManager`) (jafaripur) 2.1.25 September 26, 2023 diff --git a/src/Module.php b/src/Module.php index ee21a022b..dd065b298 100644 --- a/src/Module.php +++ b/src/Module.php @@ -63,14 +63,12 @@ class Module extends \yii\base\Module implements BootstrapInterface * @var LogTarget|array|string the logTarget object, or the configuration for creating the logTarget object. */ public $logTarget = 'yii\debug\LogTarget'; - /** - * @var \yii\rbac\BaseManager|string|array the RBAC access checker [[BaseManager]] object or the application + * @var \yii\rbac\BaseManager|string|array the RBAC access checker [[BaseManager]] object or the application * component ID of the AuthManager [[BaseManager]]. * @since 2.1.19 */ public $authManager = 'authManager'; - /** * @var array|Panel[] list of debug panels. The array keys are the panel IDs, and values are the corresponding * panel class names or configuration arrays. This will be merged with [[corePanels()]].