We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7c283 commit 3a3839bCopy full SHA for 3a3839b
app/code/Magento/Webapi/Model/Rest/Config.php
@@ -21,6 +21,7 @@ class Config
21
const HTTP_METHOD_DELETE = 'DELETE';
22
const HTTP_METHOD_PUT = 'PUT';
23
const HTTP_METHOD_POST = 'POST';
24
+ const HTTP_METHOD_PATCH = 'PATCH';
25
/**#@-*/
26
27
/**#@+
app/code/Magento/WebapiAsync/Model/ServiceConfig/Converter.php
@@ -28,7 +28,7 @@ class Converter implements \Magento\Framework\Config\ConverterInterface
28
\Magento\Webapi\Model\Rest\Config::HTTP_METHOD_POST,
29
\Magento\Webapi\Model\Rest\Config::HTTP_METHOD_PUT,
30
\Magento\Webapi\Model\Rest\Config::HTTP_METHOD_DELETE,
31
- 'PATCH',
+ \Magento\Webapi\Model\Rest\Config::HTTP_METHOD_PATCH
32
];
33
34
/**
0 commit comments