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 53e499d commit 0e5331eCopy full SHA for 0e5331e
StubsController.php
@@ -74,15 +74,19 @@ public function actionIndex()
74
75
$config = include($configPath);
76
77
- foreach ($config['components'] as $name => $component) {
78
- if (!isset($component['class'])) {
79
- continue;
80
- }
+ if (empty($config['components'])) {
+ continue;
+ }
81
+ foreach ($config['components'] as $name => $component) {
82
if ($name === 'user' && isset($component['identityClass'])) {
83
$userIdentities[] = $component['identityClass'];
84
}
85
86
+ if (!isset($component['class'])) {
87
88
89
+
90
$components[$name][] = $component['class'];
91
92
0 commit comments