Deprecate AbstractApi::get()
, AbstractApi::post()
, AbstractApi::put()
and AbstractApi::delete()
#372
Closed
4 tasks done
The methods
AbstractApi::get()
,AbstractApi::post()
,AbstractApi::put()
andAbstractApi::delete()
are usingAbstractApi::getContentTypeFromPath()
to guess the content type from the path. It is preferable that the content type is provided directly by the methods in the API classes. This can be realized by usingHttpClient::request()
directly instead of using the method ofAbstractApi
. Therefore this methods could be deprecated.AbstractApi::get()
: DeprecateAbstractApi::get()
#381AbstractApi::post()
: DeprecateAbstractApi::post()
#383AbstractApi::put()
: DeprecateAbstractApi::put()
#388AbstractApi::delete()
: DeprecateAbstractApi::delete()
#392The text was updated successfully, but these errors were encountered: