We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f45d0e9 commit d8058c7Copy full SHA for d8058c7
StubsController.php
@@ -67,7 +67,7 @@ public function actionIndex()
67
$components = [];
68
$userIdentities = [];
69
70
- foreach (\Yii::$app->requestedParams as $configPath) {
+ foreach (array_slice(\Yii::$app->getRequest()->getParams(), 1) as $configPath) {
71
if (!file_exists($configPath)) {
72
throw new Exception('Config file doesn\'t exists: ' . $configPath);
73
}
0 commit comments