PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
Auth
/
Editing: NullAuthenticator.php
<?php declare(strict_types=1); namespace Saloon\Http\Auth; use Saloon\Http\PendingRequest; use Saloon\Contracts\Authenticator; class NullAuthenticator implements Authenticator { /** * Apply the authentication to the request. */ public function set(PendingRequest $pendingRequest): void { // } }
SAVE
CANCEL