You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
abstract class BaseClient implements ClientInterface
{
protected string $resource;
public function __construct(
protected ApiInterface $api
) {
}
/**
* @deprecated 1.0 use Sysix\LexOffice\Utils::getJsonFromResponse()
*
* @codeCoverageIgnore
*/
public function getAsJson(ResponseInterface $response): mixed
{
trigger_error(self::class . '::' . __METHOD__ . ' should not be called anymore, use \Sysix\LexOffice\Utils::getJsonFromResponse instead', E_USER_DEPRECATED);