davaxi/AllMySMS

View on GitHub
src/Service.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Davaxi\AllMySMS;

/**
 * Class Service
 * @package Davaxi\AllMySMS
 */
abstract class Service
{
    /**
     * @var Client
     */
    protected $client;

    /**
     * Service constructor.
     * @param Client $client
     */
    public function __construct(Client $client)
    {
        $this->client = $client;
    }


}