Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
11.11% covered (danger)
11.11%
1 / 9
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
StringToUploadedFileInterface
11.11% covered (danger)
11.11%
1 / 9
50.00% covered (danger)
50.00%
1 / 2
22.56
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 convert
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2namespace Apie\StorageMetadata\Converters;
3
4use Apie\Core\FileStorage\FileStorageInterface;
5use Apie\Core\FileStorage\StoredFile;
6use Apie\Core\Utils\ConverterUtils;
7use Apie\TypeConverter\ConverterInterface;
8use Psr\Http\Message\UploadedFileInterface;
9use ReflectionClass;
10use ReflectionType;
11
12/**
13 * @implements ConverterInterface<?string, ?UploadedFileInterface>
14 */
15class StringToUploadedFileInterface implements ConverterInterface
16{
17    public function __construct(
18        private readonly FileStorageInterface $fileStorage
19    ) {
20    }
21
22    public function convert(?string $input, ?ReflectionType $wantedType): ?UploadedFileInterface
23    {
24        if ($input === null || 'null' === (string) $wantedType) {
25            return null;
26        }
27        /** @var ReflectionClass<StoredFile>|null $class */
28        $class = ConverterUtils::toReflectionClass($wantedType);
29        $res = $this->fileStorage->getProxy(
30            $input,
31            in_array($class?->name, [UploadedFileInterface::class, null]) ? StoredFile::class : $class->name
32        );
33
34        return $res;
35    }
36}