1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Type;
6
7interface ParserInterface
8{
9    public function parse(string $type): array;
10}
11