Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
16.67% covered (danger)
16.67%
2 / 12
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
FileUploadComponentProvider
16.67% covered (danger)
16.67%
2 / 12
50.00% covered (danger)
50.00%
1 / 2
13.26
0.00% covered (danger)
0.00%
0 / 1
 supports
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
3
 createComponentFor
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\HtmlBuilders\Factories\Concrete;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Utils\ConverterUtils;
6use Apie\HtmlBuilders\Components\Forms\SingleInput;
7use Apie\HtmlBuilders\FormBuildContext;
8use Apie\HtmlBuilders\Interfaces\ComponentInterface;
9use Apie\HtmlBuilders\Interfaces\FormComponentProviderInterface;
10use Psr\Http\Message\UploadedFileInterface;
11use ReflectionType;
12
13final class FileUploadComponentProvider implements FormComponentProviderInterface
14{
15    public function supports(ReflectionType $type, FormBuildContext $context): bool
16    {
17        $class = ConverterUtils::toReflectionClass($type);
18        return $class && ($class->name === UploadedFileInterface::class || in_array(UploadedFileInterface::class, $class->getInterfaceNames()));
19    }
20    public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface
21    {
22        return new SingleInput(
23            $context->getFormName(),
24            $context->getFilledInValue(),
25            $context->createTranslationLabel(),
26            $type->allowsNull(),
27            $type,
28            new CmsSingleInput(
29                ['file']
30            )
31        );
32    }
33}