Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
25.00% covered (danger)
25.00%
3 / 12
42.86% covered (danger)
42.86%
3 / 7
CRAP
0.00% covered (danger)
0.00%
0 / 1
StoredFileMetadata
25.00% covered (danger)
25.00%
3 / 12
42.86% covered (danger)
42.86%
3 / 7
43.17
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
 getValueOptions
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 toClass
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getHashmap
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
12
 getRequiredFields
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 toScalarType
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getArrayItemType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Core\Metadata;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\Context\MetadataFieldHashmap;
6use Apie\Core\Enums\ScalarType;
7use Apie\Core\FileStorage\StoredFile;
8use Apie\Core\Lists\StringList;
9use Apie\Core\Lists\ValueOptionList;
10use Apie\Core\Metadata\Fields\ConstructorParameter;
11use Apie\Core\Metadata\Fields\GetterMethod;
12use ReflectionClass;
13use ReflectionMethod;
14use ReflectionParameter;
15
16final class StoredFileMetadata implements MetadataInterface
17{
18    /**
19     * @param ReflectionClass<StoredFile> $class
20     */
21    public function __construct(
22        private readonly ReflectionClass $class,
23        private readonly bool $getters,
24        private readonly bool $setters
25    ) {
26    }
27
28    public function getValueOptions(ApieContext $context, bool $runtimeFilter = false): ?ValueOptionList
29    {
30        return null;
31    }
32
33    /**
34     * @return ReflectionClass<StoredFile>
35     */
36    public function toClass(): ReflectionClass
37    {
38        return $this->class;
39    }
40
41    public function getHashmap(): MetadataFieldHashmap
42    {
43        $mapping = [];
44        if ($this->getters) {
45            $mapping['indexing'] = new GetterMethod(new ReflectionMethod(StoredFile::class, 'getIndexing'));
46        }
47        if ($this->setters) {
48            $mapping['contents']  = new ConstructorParameter((new ReflectionParameter([StoredFile::class, '__construct'], 'content')));
49        }
50        return new MetadataFieldHashmap($mapping);
51    }
52
53    public function getRequiredFields(): StringList
54    {
55        return new StringList([]);
56    }
57
58    public function toScalarType(): ScalarType
59    {
60        return ScalarType::STDCLASS;
61    }
62
63    public function getArrayItemType(): ?MetadataInterface
64    {
65        return null;
66    }
67}