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\Serializer\Interfaces;
3
4use Apie\Core\Lists\ItemHashmap;
5use Apie\Core\Lists\ItemList;
6
7interface EncoderInterface
8{
9    public function encode(string|int|float|bool|array|null|ItemHashmap|ItemList $input): string;
10}