Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stubs/ContextAwareDenormalizerInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface ContextAwareDenormalizerInterface extends DenormalizerInterface
{
/**
* @param mixed $data
* @param string $format
* @param string|null $format
* @param array<mixed> $context
* @return bool
*/
Expand Down
2 changes: 1 addition & 1 deletion stubs/ContextAwareNormalizerInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface ContextAwareNormalizerInterface extends NormalizerInterface
{
/**
* @param mixed $data
* @param string $format
* @param string|null $format
* @param array<mixed> $context
* @return bool
*/
Expand Down
4 changes: 2 additions & 2 deletions stubs/DenormalizerInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface DenormalizerInterface
/**
* @param mixed $data
* @param string $type
* @param string $format
* @param string|null $format
* @param array<mixed> $context
* @return object|array<mixed>
*/
Expand All @@ -16,7 +16,7 @@ interface DenormalizerInterface
/**
* @param mixed $data
* @param string $type
* @param string $format
* @param string|null $format
* @return bool
*/
public function supportsDenormalization($data, $type, $format = null);
Expand Down
2 changes: 1 addition & 1 deletion stubs/EncoderInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface EncoderInterface
* @param mixed $data
* @param string $format
* @param array<mixed> $context
* @return string|int|float|bool
* @return string
*/
public function encode($data, $format, array $context = []);

Expand Down
2 changes: 1 addition & 1 deletion stubs/NormalizerInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface NormalizerInterface
{
/**
* @param mixed $object
* @param string $format
* @param string|null $format
* @param array<mixed> $context
* @return array<mixed>|string|int|float|bool|null
*/
Expand Down