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 | interface DecoderInterface |
5 | { |
6 | public function decode(string $input): string|int|float|bool|array|null; |
7 | public function withOptions(string $options): DecoderInterface; |
8 | public function withParsedBody(null|array|object $parsedBody): DecoderInterface; |
9 | public function requiresCsrf(): bool; |
10 | } |