Hi,
Thanks for this library
Some method signatures have been deprecated in PHP8 in your curl client service
public function POST(IService $service, $requestUrl, $params = null, $token = null,$authType)
public function GET(IService $service, $requestUrl, $token = null,$authType)
public function PUT(IService $service, $requestUrl, $params = null, $token = null,$authType)
All displaying the error Required parameter $authType follows optional parameter $params as stated. You may have to ditch those nulls or perhaps you might want to use an established php http client like Guzzle and co
Hi,
Thanks for this library
Some method signatures have been deprecated in PHP8 in your curl client service
public function POST(IService $service, $requestUrl, $params = null, $token = null,$authType)public function GET(IService $service, $requestUrl, $token = null,$authType)public function PUT(IService $service, $requestUrl, $params = null, $token = null,$authType)All displaying the error
Required parameter $authType follows optional parameter $paramsas stated. You may have to ditch those nulls or perhaps you might want to use an established php http client like Guzzle and co