Skip to content

Commit d23e22a

Browse files
ENGCOM-4536: Fix typo #21843
- Merge Pull Request #21843 from nasanabri/magento2:patch-1 - Merged commits: 1. 6ddeaaf 2. adf2d64
2 parents a4b4463 + adf2d64 commit d23e22a

File tree

1 file changed

+8
-5
lines changed
  • lib/internal/Magento/Framework/Oauth

1 file changed

+8
-5
lines changed

lib/internal/Magento/Framework/Oauth/Oauth.php

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Magento\Framework\Encryption\Helper\Security;
1010
use Magento\Framework\Phrase;
1111

12+
/**
13+
* Authorization service.
14+
*/
1215
class Oauth implements OauthInterface
1316
{
1417
/**
@@ -61,7 +64,7 @@ public static function getSupportedSignatureMethods()
6164
}
6265

6366
/**
64-
* {@inheritdoc}
67+
* @inheritdoc
6568
*/
6669
public function getRequestToken($params, $requestUrl, $httpMethod = 'POST')
6770
{
@@ -74,7 +77,7 @@ public function getRequestToken($params, $requestUrl, $httpMethod = 'POST')
7477
}
7578

7679
/**
77-
* {@inheritdoc}
80+
* @inheritdoc
7881
*/
7982
public function getAccessToken($params, $requestUrl, $httpMethod = 'POST')
8083
{
@@ -102,7 +105,7 @@ public function getAccessToken($params, $requestUrl, $httpMethod = 'POST')
102105
}
103106

104107
/**
105-
* {@inheritdoc}
108+
* @inheritdoc
106109
*/
107110
public function validateAccessTokenRequest($params, $requestUrl, $httpMethod = 'POST')
108111
{
@@ -125,15 +128,15 @@ public function validateAccessTokenRequest($params, $requestUrl, $httpMethod = '
125128
}
126129

127130
/**
128-
* {@inheritdoc}
131+
* @inheritdoc
129132
*/
130133
public function validateAccessToken($accessToken)
131134
{
132135
return $this->_tokenProvider->validateAccessToken($accessToken);
133136
}
134137

135138
/**
136-
* {@inheritdoc}
139+
* @inheritdoc
137140
*/
138141
public function buildAuthorizationHeader(
139142
$params,

0 commit comments

Comments
 (0)