Skip to content

Commit d4750f3

Browse files
authored
Merge pull request #36 from eversign/psr-0-compatibility
OAuthTokenRequest same class and file name fix
2 parents 4aec9c3 + e4916b4 commit d4750f3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sdk/Eversign/OAuthTokenRequest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
use JMS\Serializer\SerializerBuilder;
3232

3333

34-
class OauthTokenRequest {
34+
class OAuthTokenRequest {
3535

3636
/**
3737
* The client id of your app
@@ -81,7 +81,8 @@ public function __construct($obj) {
8181
}
8282
}
8383

84-
public function toArray() {
84+
public function toArray(): array
85+
{
8586
return array(
8687
'client_id' => $this->client_id,
8788
'client_secret' => $this->client_secret,

0 commit comments

Comments
 (0)