15 lines
202 B
PHP
15 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
namespace SlotDb\Client;
|
||
|
|
||
|
use Psr\Http\Client\ClientInterface;
|
||
|
|
||
|
class SlotDbClient
|
||
|
{
|
||
|
public function __construct(
|
||
|
private readonly ClientInterface $client
|
||
|
)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|