我有一个包含在函数中的配置文件,如下所示:
function getConnection() {
include 'config.php';
return new Connection($config['host']);
}
问题是让 Psalm$config
从配置文件中识别变量。可能的?最好使用数组形状表示法。
我有一个包含在函数中的配置文件,如下所示:
function getConnection() {
include 'config.php';
return new Connection($config['host']);
}
问题是让 Psalm$config
从配置文件中识别变量。可能的?最好使用数组形状表示法。