| 1 | <?php |
||
| 22 | final class ElasticsearchUserView implements UserView |
||
| 23 | { |
||
| 24 | private $elasticsearch; |
||
| 25 | private $index; |
||
| 26 | private $type; |
||
| 27 | |||
| 28 | public function __construct(Client $elasticsearch, string $index, string $type) |
||
| 34 | |||
| 35 | public function userOfId(UserId $userId) : ?User |
||
| 45 | |||
| 46 | public function save(User $user) : void |
||
| 55 | |||
| 56 | private function normalizeElasticsearchData(array $elasticsearchData) : array |
||
| 60 | } |
||
| 61 |