1 | <?php |
||
7 | class Adapter |
||
8 | { |
||
9 | /** @var Client */ |
||
10 | private $client; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $index; |
||
14 | |||
15 | 3 | public function __construct(Client $client, string $index) |
|
20 | |||
21 | 1 | public function find(string $type, string $id): array |
|
29 | |||
30 | 1 | public function findBy(string $type, array $body = []): array |
|
38 | |||
39 | 1 | public function update(string $type, array $body, string $id = null): array |
|
54 | } |
||
55 |