File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Bundle/JoseFramework/Serializer Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ public function __construct(
32
32
$ this ->serializerManager = $ serializerManager ;
33
33
}
34
34
35
- public function supportsEncoding (string $ format ): bool
35
+ public function supportsEncoding (string $ format, array $ context = [] ): bool
36
36
{
37
37
return class_exists (JWESerializerManager::class) && $ this ->formatSupported ($ format );
38
38
}
39
39
40
- public function supportsDecoding (string $ format ): bool
40
+ public function supportsDecoding (string $ format, array $ context = [] ): bool
41
41
{
42
42
return class_exists (JWESerializerManager::class) && $ this ->formatSupported ($ format );
43
43
}
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ public function __construct(
31
31
$ this ->serializerManager = $ serializerManager ;
32
32
}
33
33
34
- public function supportsEncoding (string $ format ): bool
34
+ public function supportsEncoding (string $ format, array $ context = [] ): bool
35
35
{
36
36
return class_exists (JWSSerializerManager::class) && $ this ->formatSupported ($ format );
37
37
}
38
38
39
- public function supportsDecoding (string $ format ): bool
39
+ public function supportsDecoding (string $ format, array $ context = [] ): bool
40
40
{
41
41
return class_exists (JWSSerializerManager::class) && $ this ->formatSupported ($ format );
42
42
}
You can’t perform that action at this time.
0 commit comments