APIRequest.php 1.13 KB
<?php
namespace App\Service;

use App\Models\Tokens;

class APIRequest  implements \App\Service\Contract\APIRequest {

    function setService(string $service)
    {
        // TODO: Implement setService() method.
    }

    function getService()
    {
        // TODO: Implement getService() method.
    }

    function setMethod(string $method)
    {
        // TODO: Implement setMethod() method.
    }

    function getMethod()
    {
        // TODO: Implement getMethod() method.
    }

    function setParams(array $params)
    {
        // TODO: Implement setParams() method.
    }

    function getParams()
    {
        // TODO: Implement getParams() method.
    }

    function setToken(int $token)
    {
        // TODO: Implement setToken() method.
    }

    function getToken(): Tokens
    {
        // TODO: Implement getToken() method.
    }

    function setApi(string $api)
    {
        // TODO: Implement setApi() method.
    }

    function getApi(): string
    {
        // TODO: Implement getApi() method.
    }

    function chunk($objects): \App\Service\Contract\APIRequest
    {
        // TODO: Implement chunk() method.
    }
}