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