PATH:
home
/
thebhoeo
/
.trash
/
wpforms-lite-pro
/
vendor_prefixed
/
square
/
square
/
src
<?php declare (strict_types=1); namespace WPForms\Vendor\Square; /** * Interface for defining the behavior of Authentication. */ interface BearerAuthCredentials { /** * String value for accessToken. */ public function getAccessToken() : string; /** * Checks if provided credentials match with existing ones. * * @param string $accessToken The OAuth 2.0 Access Token to use for API requests. */ public function equals(string $accessToken) : bool; }
[-] Server.php
[edit]
[+]
Authentication
[-] SquareClientBuilder.php
[edit]
[+]
Http
[-] ApiHelper.php
[edit]
[+]
Models
[+]
Apis
[-] BearerAuthCredentials.php
[edit]
[+]
Utils
[-] Environment.php
[edit]
[-] ConfigurationInterface.php
[edit]
[+]
..
[+]
Exceptions
[-] SquareClient.php
[edit]
[-] ConfigurationDefaults.php
[edit]