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