- Quickfix on missing debugResponse method of Apihandler
This commit is contained in:
parent
4e120cea6c
commit
7a31baa586
|
@ -209,7 +209,9 @@ class ApiRepository extends \Ulmus\Repository
|
||||||
|
|
||||||
protected function callApiDebugCallback(CurlTransport $transport) : void
|
protected function callApiDebugCallback(CurlTransport $transport) : void
|
||||||
{
|
{
|
||||||
$this->adapter->apiHandler->debugResponse($transport, $this);
|
if (method_exists($this->adapter->apiHandler, 'debugResponse')) {
|
||||||
|
$this->adapter->apiHandler->debugResponse($transport, $this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectionFromQuery(? string $entityClass = null) : EntityCollection
|
public function collectionFromQuery(? string $entityClass = null) : EntityCollection
|
||||||
|
|
Loading…
Reference in New Issue