damianopetrungaro/CachetSDK

View on GitHub
src/General/GeneralFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * This file is part of the Damianopetrungaro\CachetSDK\General package.
 *
 * @author Damiano Petrungaro <damianopetrungaro@gmail.it>
 */

namespace Damianopetrungaro\CachetSDK\General;

use Damianopetrungaro\CachetSDK\CachetClient;

class GeneralFactory
{
    /**
     * Build an object.
     *
     * @param $client
     *
     * @return object GeneralActions
     */
    public static function build(CachetClient $client)
    {
        return new GeneralActions($client);
    }
}