1
0
mirror of synced 2025-02-20 09:33:13 +03:00

11 lines
265 B
PHP
Raw Normal View History

<?php
namespace RetailCrm\ServiceBundle\Serializer;
interface Adapter
{
public function deserialize(string $data, string $type, string $format = 'json'): object;
public function arrayToObject(array $data, string $type, ?string $format = null): object;
}