diff --git a/extensions/mongodb/composer.json b/extensions/mongodb/composer.json index efc265b40a..142567c355 100644 --- a/extensions/mongodb/composer.json +++ b/extensions/mongodb/composer.json @@ -27,7 +27,6 @@ "extra": { "branch-alias": { "dev-master": "2.0.x-dev" - }, - "bootstrap": "yii\\mongodb\\debug\\MongoDbPanel" + } } } diff --git a/extensions/mongodb/debug/MongoDbPanel.php b/extensions/mongodb/debug/MongoDbPanel.php index 92a18fc714..e8b5e2e4c8 100644 --- a/extensions/mongodb/debug/MongoDbPanel.php +++ b/extensions/mongodb/debug/MongoDbPanel.php @@ -7,8 +7,6 @@ namespace yii\mongodb\debug; -use yii\base\Application; -use yii\base\BootstrapInterface; use yii\debug\panels\DbPanel; use yii\log\Logger; @@ -18,21 +16,8 @@ use yii\log\Logger; * @author Klimov Paul * @since 2.0.1 */ -class MongoDbPanel extends DbPanel implements BootstrapInterface +class MongoDbPanel extends DbPanel { - /** - * Bootstrap method to be called during application bootstrap stage. - * @param Application $app the application currently running - */ - public function bootstrap($app) - { - $modules = $app->getModules(); - if(isset($modules['debug'])){ - $modules['debug']['panels']['mongodb'] = ['class'=>self::className()]; - } - $app->setModules($modules); - } - /** * @inheritdoc */ @@ -63,5 +48,4 @@ class MongoDbPanel extends DbPanel implements BootstrapInterface 'yii\mongodb\Database::*', ]); } - -} \ No newline at end of file +} \ No newline at end of file