1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Remove support for options in request_html as not used

This commit is contained in:
Yassine Guedidi 2024-12-22 23:51:40 +01:00
parent 59831166ed
commit c2197bd020

View file

@ -37,7 +37,7 @@ class AuthenticatorProvider implements ExpressionFunctionProviderInterface
function () { function () {
throw new \Exception('Not supported'); throw new \Exception('Not supported');
}, },
function (array $arguments, $uri, array $options = []) { function (array $arguments, $uri) {
return $this->guzzle->get($uri, $options)->getBody(); return $this->guzzle->get($uri, $options)->getBody();
} }
); );