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
IntComponentProvider
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 IntComponentProvider 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::INTEGER;
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                ['integer', 'number', 'text']
30            )
31        );
32    }
33}