Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
94.12% covered (success)
94.12%
16 / 17
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
FieldUtils
94.12% covered (success)
94.12%
16 / 17
0.00% covered (danger)
0.00%
0 / 1
9.02
0.00% covered (danger)
0.00%
0 / 1
 __construct
n/a
0 / 0
n/a
0 / 0
1
 countAmountOfFields
94.12% covered (success)
94.12%
16 / 17
0.00% covered (danger)
0.00%
0 / 1
8.01
1<?php
2namespace Apie\HtmlBuilders\Utils;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\Enums\ScalarType;
6use Apie\Core\Metadata\MetadataFactory;
7use Apie\Core\Metadata\MetadataInterface;
8
9final class FieldUtils
10{
11    /**
12     * @codeCoverageIgnore
13     */
14    private function __construct()
15    {
16    }
17
18    public static function countAmountOfFields(MetadataInterface $metadata, ApieContext $apieContext): int
19    {
20        $count = 1;
21        if ($metadata->toScalarType() === ScalarType::STDCLASS) {
22            foreach ($metadata->getHashmap() as $fieldMeta) {
23                if (!$fieldMeta->isField()) {
24                    continue;
25                }
26                $type = $fieldMeta->getTypehint();
27                if ($type) {
28                    $foundMetadata = MetadataFactory::getCreationMetadata($type, $apieContext);
29                    $count += self::countAmountOfFields($foundMetadata, $apieContext);
30                }
31            }
32        }
33        $arrayType = $metadata->getArrayItemType();
34        if ($arrayType && $metadata->toScalarType() === ScalarType::ARRAY) {
35            $count++;
36            $class = $arrayType->toClass();
37            if ($class) {
38                $foundMetadata = MetadataFactory::getCreationMetadata($class, $apieContext);
39                $count += self::countAmountOfFields($foundMetadata, $apieContext);
40            }
41        }
42        
43        return $count;
44    }
45}