GinoPane/PHPolyglot

View on GitHub
src/API/Factory/ApiFactoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace GinoPane\PHPolyglot\API\Factory;

/**
 * Interface ApiFactoryInterface
 *
 * Interface that provides a method to get the necessary API object
 *
 * @author Sergey <Gino Pane> Karavay
 */
interface ApiFactoryInterface
{
    /**
     * Gets necessary API object
     *
     * @param array $parameters
     *
     * @return mixed
     */
    public function getApi(array $parameters = []);
}