Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Письменов Дмитрий Иванович / yourroomads

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yourroomads
  • app
  • Service
  • Contract
  • API.php
  • Евгений's avatar
    Улучшение #19452 · 0191d305
    Учет баллов при работе с АПИ
    Евгений committed May 05, 2021
    0191d305
API.php 234 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
namespace App\Service\Contract;

use Illuminate\Http\Client\Response;

interface API{
    function getAuthLink();
    function getToken($code);

    function setRequest(APIRequest $request);

    function execute(): Response;
}