Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total  
 
 
 
CRAP  
 
<?php
/**
 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
 */
namespace Team3\PayU\Communication;
use Psr\Log\LoggerInterface;
use Team3\PayU\Serializer\SerializerInterface;
/**
 * Will build {@link ClientInterface}
 *
 * Interface ClientAdapterFactoryInterface
 * @package Team3\PayU\Communication
 */
interface ClientAdapterFactoryInterface
{
    /**
     * @param SerializerInterface $serializer
     * @param LoggerInterface     $logger
     *
     * @return ClientInterface
     */
    public function build(SerializerInterface $serializer, LoggerInterface $logger);
}