Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
FloatComponentProvider
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 supports
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 createComponentFor
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\HtmlBuilders\Factories\Concrete;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Enums\ScalarType;
6use Apie\Core\Metadata\MetadataFactory;
7use Apie\HtmlBuilders\Components\Forms\SingleInput;
8use Apie\HtmlBuilders\FormBuildContext;
9use Apie\HtmlBuilders\Interfaces\ComponentInterface;
10use Apie\HtmlBuilders\Interfaces\FormComponentProviderInterface;
11use ReflectionType;
12
13class FloatComponentProvider implements FormComponentProviderInterface
14{
15    public function supports(ReflectionType $type, FormBuildContext $context): bool
16    {
17        $metadata = MetadataFactory::getCreationMetadata($type, $context->getApieContext());
18        return $metadata->toScalarType() === ScalarType::FLOAT;
19    }
20
21    public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface
22    {
23        return new SingleInput(
24            $context->getFormName(),
25            $context->getFilledInValue(),
26            $context->createTranslationLabel(),
27            $type->allowsNull(),
28            $type,
29            new CmsSingleInput(
30                ['number', 'text']
31            )
32        );
33    }
34}