8000 fixed typo · symfony/symfony@518d02d · GitHub
[go: up one dir, main page]

Skip to content

Commit 518d02d

Browse files
committed
fixed typo
1 parent 5d3561a commit 518d02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Config/Loader/FileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function import($resource, $type = null, $ignoreErrors = false, $sourceRe
8989
$ret[] = $this->doImport($resource, $type, $ignoreErrors, $sourceResource);
9090
}
9191

92-
return $ct > 1 ? $ret : isset($ret[0]) ? $ret[0] : null;
92+
return $ct > 1 ? $ret : (isset($ret[0]) ? $ret[0] : null);
9393
}
9494

9595
/**

0 commit comments

Comments
 (0)
0