Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Core\Metadata;
3
4use Apie\Core\Context\MetadataFieldHashmap;
5use Apie\Core\Enums\ScalarType;
6use Apie\Core\Lists\StringList;
7
8interface NullableMetadataInterface extends MetadataInterface
9{
10    public function getHashmap(): MetadataFieldHashmap;
11    public function getRequiredFields(): StringList;
12    public function toScalarType(bool $ignoreNull = false): ScalarType;
13    public function getArrayItemType(): ?MetadataInterface;
14}