Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
54.55% covered (warning)
54.55%
6 / 11
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
ItemSetSchemaProvider
54.55% covered (warning)
54.55%
6 / 11
66.67% covered (warning)
66.67%
2 / 3
5.50
0.00% covered (danger)
0.00%
0 / 1
 supports
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
2
 addDisplaySchemaFor
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 addCreationSchemaFor
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\SchemaGenerator\SchemaProviders;
3
4use Apie\Core\Lists\ItemSet;
5use Apie\SchemaGenerator\Builders\ComponentsBuilder;
6use Apie\SchemaGenerator\Interfaces\SchemaProvider;
7use cebe\openapi\spec\Components;
8use ReflectionClass;
9
10/**
11 * Creates schemas for Item Sets.
12 *
13 * @implements SchemaProvider<ItemSet>
14 */
15class ItemSetSchemaProvider implements SchemaProvider
16{
17    public function supports(ReflectionClass $class): bool
18    {
19        return $class->isSubclassOf(ItemSet::class) || $class->name === ItemSet::class;
20    }
21
22    public function addDisplaySchemaFor(
23        ComponentsBuilder $componentsBuilder,
24        string $componentIdentifier,
25        ReflectionClass $class,
26        bool $nullable = false
27    ): Components {
28        $type = $class->getMethod('offsetGet')->getReturnType();
29        $schema = $componentsBuilder->getSchemaForType($type, true, display: true, nullable: $nullable);
30        $schema->uniqueItems = true;
31        $componentsBuilder->setSchema($componentIdentifier, $schema);
32
33        return $componentsBuilder->getComponents();
34    }
35
36    public function addCreationSchemaFor(
37        ComponentsBuilder $componentsBuilder,
38        string $componentIdentifier,
39        ReflectionClass $class,
40        bool $nullable = false
41    ): Components {
42        $type = $class->getMethod('offsetGet')->getReturnType();
43        $schema = $componentsBuilder->getSchemaForType($type, true, display: false, nullable: $nullable);
44        $schema->uniqueItems = true;
45        $componentsBuilder->setSchema($componentIdentifier, $schema);
46
47        return $componentsBuilder->getComponents();
48    }
49}