* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://opensource.org/licenses/MIT */ class BearerAuth extends Auth { /** * Returns the authentication token */ public function token(): string { return $this->data; } /** * Returns the auth type */ public function type(): string { return 'bearer'; } }