add Settings Class, add authAsUser method for collection

This commit is contained in:
Jonathan
2023-04-15 20:50:48 +02:00
parent 9d125d8cc2
commit df8ed036fc
5 changed files with 86 additions and 1 deletions

View File

@@ -15,4 +15,9 @@ class Client
{
return new Collection($this->url ,$collection);
}
public function settings(): Settings
{
return new Settings($this->url);
}
}