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 · 478a9c4a
    Учет баллов при работе с АПИ
    Евгений committed May 06, 2021
    478a9c4a
API.php 260 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
namespace App\Service\Contract;

use Illuminate\Http\Client\Response;

interface API{
    CONST YANDEX = 'yd';

    function getAuthLink();
    function getToken($code);

    function setRequest(APIRequest $request);

    function execute(): Response;
}