1
0
mirror of synced 2025-02-18 00:43:12 +03:00
Кривич Сергей 897df39d96 Update code base
2022-07-20 14:38:42 +03:00

11 lines
265 B
PHP

<?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;
}