| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 9 | class GeodisJsonApi extends GeodisManager |
||
| 10 | { |
||
| 11 | public function __construct(EntityManagerInterface $em) |
||
| 12 | { |
||
| 13 | parent::__construct($em); |
||
| 14 | } |
||
| 15 | |||
| 16 | public function setConfig($config): void |
||
| 19 | } |
||
| 20 | |||
| 21 | private function request(string $method, string $service, array|string|null $body = null): mixed |
||
| 26 | } |
||
| 27 | |||
| 28 | public function persist(Model $entity, string $service): mixed |
||
| 32 | } |
||
| 33 | } |
||
| 34 |