Files
pocketbase-php-sdk/src/Client.php
2023-02-28 21:12:38 +01:00

19 lines
281 B
PHP

<?php
namespace Pb;
class Client
{
private string $url;
public function __construct(string $url)
{
$this->url = $url;
}
public function collection(string $collection): Collection
{
return new Collection($this->url ,$collection);
}
}