*/ public function all(): Collection { $files = glob($this->path.'/*.pail') ?: []; return collect($files) ->map(fn (string $file) => new File($file)); } }