PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
OAuth2
/
Editing: GetUserRequest.php
<?php declare(strict_types=1); namespace Saloon\Http\OAuth2; use Saloon\Enums\Method; use Saloon\Http\Request; use Saloon\Contracts\Body\HasBody; use Saloon\Traits\Body\HasFormBody; use Saloon\Helpers\OAuth2\OAuthConfig; use Saloon\Traits\Plugins\AcceptsJson; class GetUserRequest extends Request implements HasBody { use HasFormBody; use AcceptsJson; /** * Define the method that the request will use. */ protected Method $method = Method::GET; /** * Define the endpoint for the request. */ public function resolveEndpoint(): string { return $this->oauthConfig->getUserEndpoint(); } /** * Requires the authorization code and OAuth 2 config. */ public function __construct(protected OAuthConfig $oauthConfig) { // } }
SAVE
CANCEL