giansalex/greenter-ws

View on GitHub
src/Ws/Builder/ServiceBuilder.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: Soporte
 * Date: 6/11/2018
 * Time: 12:12.
 */

declare(strict_types=1);

namespace Greenter\Ws\Builder;

use Greenter\Ws\Services\BaseSunat;
use Greenter\Ws\Services\WsClientInterface;

/**
 * Class ServiceBuilder.
 */
class ServiceBuilder
{
    /**
     * @var WsClientInterface
     */
    private $client;

    /**
     * @param WsClientInterface $client
     *
     * @return $this
     */
    public function setClient($client)
    {
        $this->client = $client;

        return $this;
    }

    /**
     * @param string $type Service Class
     *
     * @return object
     */
    public function build($type)
    {
        if (!is_subclass_of($type, BaseSunat::class)) {
            throw new DocumentNoSupportException($type.' should be instance of '.BaseSunat::class);
        }

        /** @var BaseSunat $service */
        $service = new $type();
        $service->setClient($this->client);

        return $service;
    }
}