Integration Tests for all Providers #1

Merged
abelhooge merged 3 commits from continuous-integration into master 2020-12-21 14:38:04 +01:00
Showing only changes of commit ac0fc0331e - Show all commits

View File

@ -114,7 +114,11 @@ class FileProvider implements iObjectStorageProvider
public function getIndex(): array
{
return $this->index;
$out = [];
foreach ($this->index as $key => $val)
$out[] = $key;
return $out;
}
public function getItem(string $key)