Skip to content

Commit 0640da5

Browse files
committed
Fix PHPCS warning line eceeds 120char
1 parent 5b7e90e commit 0640da5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/OAuth/OAuth2/Service/Yahoo.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ protected function parseAccessTokenResponse($responseBody)
6868
*/
6969
protected function getExtraOAuthHeaders()
7070
{
71-
$encodedCredentials = base64_encode($this->credentials->getConsumerId() . ':' . $this->credentials->getConsumerSecret());
71+
$encodedCredentials = base64_encode(
72+
$this->credentials->getConsumerId() . ':' . $this->credentials->getConsumerSecret()
73+
);
7274
return array('Authorization' => 'Basic ' . $encodedCredentials);
7375
}
7476
}

0 commit comments

Comments
 (0)