Skip to content

Commit 7332b90

Browse files
NicoHaaseondrejmirtes
authored andcommitted
Extend Serializer stubs
1 parent c849393 commit 7332b90

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

stubs/Symfony/Component/Serializer/Encoder/DecoderInterface.stub

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ interface DecoderInterface
1818

1919
/**
2020
* @param string $format Format name
21+
* @param array<mixed> $context
2122
* @return bool
2223
*/
23-
public function supportsDecoding($format);
24+
public function supportsDecoding($format, array $context = []);
2425
}

stubs/Symfony/Component/Serializer/Encoder/EncoderInterface.stub

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ interface EncoderInterface
1818

1919
/**
2020
* @param string $format Format name
21+
* @param array<mixed> $context
2122
* @return bool
2223
*/
23-
public function supportsEncoding($format);
24+
public function supportsEncoding($format, array $context = []);
2425
}

stubs/Symfony/Component/Serializer/Normalizer/DenormalizerInterface.stub

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ interface DenormalizerInterface
3333
* @param mixed $data
3434
* @param string $type
3535
* @param string|null $format
36+
* @param array<mixed> $context
3637
* @return bool
3738
*/
38-
public function supportsDenormalization($data, $type, $format = null);
39+
public function supportsDenormalization($data, $type, $format = null, array $context = []);
3940
}

stubs/Symfony/Component/Serializer/Normalizer/NormalizerInterface.stub

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ interface NormalizerInterface
2727
/**
2828
* @param mixed $data
2929
* @param string|null $format
30+
* @param array<mixed> $context
31+
*
3032
* @return bool
3133
*/
32-
public function supportsNormalization($data, $format = null);
34+
public function supportsNormalization($data, $format = null, array $context = []);
3335
}

0 commit comments

Comments
 (0)