PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
Auth
/
Editing: QueryAuthenticator.php
<?php declare(strict_types=1); namespace Saloon\Http\Auth; use Saloon\Http\PendingRequest; use Saloon\Contracts\Authenticator; class QueryAuthenticator implements Authenticator { /** * Constructor */ public function __construct( public string $parameter, public string $value, ) { // } /** * Apply the authentication to the request. */ public function set(PendingRequest $pendingRequest): void { $pendingRequest->query()->add($this->parameter, $this->value); } }
SAVE
CANCEL