API.php 260 Bytes BlameHistoryPermalink Edit 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; }