mirror of
https://github.com/jonathan-martz/pocketbase-php-sdk.git
synced 2026-06-09 21:58:12 +00:00
19 lines
281 B
PHP
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);
|
|
}
|
|
}
|