We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b38cfd + a8eca3f commit 3b14025Copy full SHA for 3b14025
.gitignore
@@ -6,3 +6,4 @@ testing/
6
nbproject/private/
7
test/log
8
build
9
+/.phpunit.result.cache
src/Token/AccessTokenInterface.php
@@ -15,6 +15,7 @@
15
namespace League\OAuth2\Client\Token;
16
17
use JsonSerializable;
18
+use ReturnTypeWillChange;
19
use RuntimeException;
20
21
interface AccessTokenInterface extends JsonSerializable
@@ -68,5 +69,6 @@ public function __toString();
68
69
*
70
* @return array
71
*/
72
+ #[ReturnTypeWillChange]
73
public function jsonSerialize();
74
}
0 commit comments