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 |
| 2 | namespace Apie\Core\Metadata; |
| 3 | |
| 4 | use Apie\Core\Context\MetadataFieldHashmap; |
| 5 | use Apie\Core\Enums\ScalarType; |
| 6 | use Apie\Core\Lists\StringList; |
| 7 | |
| 8 | interface 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 | } |