Skip to content

Commit 1c6186c

Browse files
committed
fixed typo
1 parent d86d1ed commit 1c6186c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)