Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
NullInteractor
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
2 / 2
4
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
3
 interactWith
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Console\Helpers;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\Enums\ScalarType;
6use Apie\Core\Metadata\MetadataInterface;
7use Apie\Core\Metadata\ScalarMetadata;
8use Apie\Core\Metadata\ValueObjectMetadata;
9use Symfony\Component\Console\Helper\HelperSet;
10use Symfony\Component\Console\Input\InputInterface;
11use Symfony\Component\Console\Output\OutputInterface;
12
13final class NullInteractor implements InputInteractorInterface
14{
15    public function supports(MetadataInterface $metadata): bool
16    {
17        return ($metadata instanceof ScalarMetadata || $metadata instanceof ValueObjectMetadata)
18            && $metadata->toScalarType() === ScalarType::NULLVALUE;
19    }
20    public function interactWith(
21        MetadataInterface $metadata,
22        HelperSet $helperSet,
23        InputInterface $input,
24        OutputInterface $output,
25        ApieContext $context
26    ): mixed {
27        return null;
28    }
29}