Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
FloatNormalizer | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
3 | |
100.00% |
1 / 1 |
supportsDenormalization | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |||
denormalize | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Serializer\Normalizers; |
3 | |
4 | use Apie\Core\Lists\ItemHashmap; |
5 | use Apie\Core\Lists\ItemList; |
6 | use Apie\Core\ValueObjects\Utils; |
7 | use Apie\Serializer\Context\ApieSerializerContext; |
8 | use Apie\Serializer\Interfaces\DenormalizerInterface; |
9 | use Psr\Http\Message\UploadedFileInterface; |
10 | |
11 | class FloatNormalizer implements DenormalizerInterface |
12 | { |
13 | public function supportsDenormalization(string|int|float|bool|null|ItemList|ItemHashmap|UploadedFileInterface $object, string $desiredType, ApieSerializerContext $apieSerializerContext): bool |
14 | { |
15 | return $desiredType ==='float' || $desiredType === 'double'; |
16 | } |
17 | public function denormalize(string|int|float|bool|null|ItemList|ItemHashmap|UploadedFileInterface $object, string $desiredType, ApieSerializerContext $apieSerializerContext): float |
18 | { |
19 | return Utils::toFloat($object); |
20 | } |
21 | } |