mirror of
https://github.com/jonathan-martz/pocketbase-php-sdk.git
synced 2026-04-03 07:27:42 +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);
|
|
}
|
|
}
|