Closed Mike-Tranzit closed 5 years ago
That section is to tell the container which classes are singletons see https://www.yiiframework.com/doc/guide/2.0/en/concept-di-container or https://www.yiiframework.com/doc/guide/2.0/ru/concept-di-container
You can just set it to an empty array if you don't nead it (make sure you define $config['container']['class'] aswell). I think the phpstan-yii2 code neads to check if the config is empty
if (! empty($config['container']['singletons'])) {
foreach ($config['container']['singletons'] as $id => $service) {
...
}
}
При анализе появляется ошибка вида:
Немного покопавшись в коде наткнулся на: Что мы должны добавлять в этот массив в файле конфигурации?