⬆️ N°4770 Update to latest Symfony 3.4

This commit is contained in:
Pierre Goiffon
2022-02-10 15:18:50 +01:00
parent b494ff2ce6
commit f29a8792af
401 changed files with 4329 additions and 2378 deletions

View File

@@ -37,7 +37,7 @@ class IniFileLoader extends FileLoader
}
// real raw parsing
$result = parse_ini_file($path, true, INI_SCANNER_RAW);
$result = parse_ini_file($path, true, \INI_SCANNER_RAW);
if (isset($result['parameters']) && \is_array($result['parameters'])) {
foreach ($result['parameters'] as $key => $value) {
@@ -55,7 +55,7 @@ class IniFileLoader extends FileLoader
return false;
}
if (null === $type && 'ini' === pathinfo($resource, PATHINFO_EXTENSION)) {
if (null === $type && 'ini' === pathinfo($resource, \PATHINFO_EXTENSION)) {
return true;
}