관리-도구
편집 파일: Handler.php
<?php declare(strict_types=1); namespace Kreait\Firebase\JWT\Action\FetchGooglePublicKeys; use Kreait\Firebase\JWT\Action\FetchGooglePublicKeys; use Kreait\Firebase\JWT\Contract\Keys; use Kreait\Firebase\JWT\Error\FetchingGooglePublicKeysFailed; interface Handler { /** * @throws FetchingGooglePublicKeysFailed */ public function handle(FetchGooglePublicKeys $action): Keys; }