Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
25.00% |
3 / 12 |
|
42.86% |
3 / 7 |
CRAP | |
0.00% |
0 / 1 |
StoredFileMetadata | |
25.00% |
3 / 12 |
|
42.86% |
3 / 7 |
43.17 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getValueOptions | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
toClass | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getHashmap | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
12 | |||
getRequiredFields | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
toScalarType | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getArrayItemType | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | namespace Apie\Core\Metadata; |
3 | |
4 | use Apie\Core\Context\ApieContext; |
5 | use Apie\Core\Context\MetadataFieldHashmap; |
6 | use Apie\Core\Enums\ScalarType; |
7 | use Apie\Core\FileStorage\StoredFile; |
8 | use Apie\Core\Lists\StringList; |
9 | use Apie\Core\Lists\ValueOptionList; |
10 | use Apie\Core\Metadata\Fields\ConstructorParameter; |
11 | use Apie\Core\Metadata\Fields\GetterMethod; |
12 | use ReflectionClass; |
13 | use ReflectionMethod; |
14 | use ReflectionParameter; |
15 | |
16 | final 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 | } |