Skip to content
Snippets Groups Projects
Commit 51c87160 authored by Henri-Damien LAURENT's avatar Henri-Damien LAURENT
Browse files

dev#209900 : no git on boogie

Storm_FileSystem_Volatile : check EntryAt return if null
so that it doesnot break
parent b511f9a4
Branches dev_209900
No related merge requests found
Pipeline #41946 passed with stage
in 57 seconds
......@@ -204,6 +204,9 @@ class Storm_FileSystem_Volatile extends Storm_FileSystem_Abstract {
public function fileNamesAt($path) {
if (!$this->entryAt($path))
return [];
$collection = $this->entryAt($path)
->select(fn($entry) => $entry->isFile());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment