PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Traits
/
Auth
/
Editing: RequiresAuth.php
<?php declare(strict_types=1); namespace Saloon\Traits\Auth; use Saloon\Http\PendingRequest; use Saloon\Contracts\Authenticator; use Saloon\Exceptions\MissingAuthenticatorException; trait RequiresAuth { /** * Throw an exception if an authenticator is not on the request while it is booting. * * @throws \Saloon\Exceptions\MissingAuthenticatorException */ public function bootRequiresAuth(PendingRequest $pendingSaloonRequest): void { $authenticator = $pendingSaloonRequest->getAuthenticator(); if (! $authenticator instanceof Authenticator) { throw new MissingAuthenticatorException($this->getRequiresAuthMessage($pendingSaloonRequest)); } } /** * Default message. */ protected function getRequiresAuthMessage(PendingRequest $pendingRequest): string { return sprintf('The "%s" request requires authentication.', $pendingRequest->getRequest()::class); } }
SAVE
CANCEL