Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-api-client
/
src
/
Authentication
:
ConnectBearer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * The connect dummy bearer. * * @package WooCommerce\PayPalCommerce\ApiClient\Authentication */ declare(strict_types=1); namespace WooCommerce\PayPalCommerce\ApiClient\Authentication; use WooCommerce\PayPalCommerce\ApiClient\Entity\Token; /** * Class ConnectBearer */ class ConnectBearer implements Bearer { /** * Returns the bearer. * * @return Token */ public function bearer(): Token { $data = (object) array( 'created' => time(), 'expires_in' => 3600, 'token' => 'token', ); return new Token( $data ); } }