1
0
mirror of synced 2024-11-24 22:06:06 +03:00
service-bundle/Serializer/Adapter.php
Кривич Сергей 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;
}