aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/cardinity/cardinity-sdk-php/src/Method/ResultObjectMapperInterface.php
blob: 7cf1e646fea65d703d8f6e27c90d9e8b30d75ed1 (plain)
1
2
3
4
5
6
7
8
9
<?php

namespace Cardinity\Method;

interface ResultObjectMapperInterface
{
    public function map(array $response, ResultObjectInterface $result);
    public function mapCollection(array $response, MethodResultCollectionInterface $result);
}