Skip to content

Commit 624029e

Browse files
authored
Remove useless casts (#1289)
1 parent c11533c commit 624029e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Provider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function getUserByToken($token): array
9999
]
100100
);
101101

102-
return (array) json_decode((string) $response->getBody(), true);
102+
return json_decode((string) $response->getBody(), true);
103103
}
104104

105105
/**

0 commit comments

Comments
 (0)