AuthleteLaravelConfiguration
in package
implements
AuthleteConfiguration
Uses
AuthleteConfigurationTrait
An implementation of the \Authlete\Conf\AuthleteConfiguration interface that utilizes Laravel's configuration mechanism.
This class requires that config/authlete.php
exist and have
configuration like the following.
<?php
return [
'base_url' => 'https://api.authlete.com',
'service_owner_api_key' => '',
'service_owner_api_secret' => '',
'service_api_key' => '',
'service_api_secret' => ''
];
?>
Of course, values of the configuration parameters need to replaced with your own values.
Table of Contents
Interfaces
- AuthleteConfiguration
Methods
- __construct() : mixed
- Constructor which refers to 'config/authlete.php' and sets up the corresponding properties.
Methods
__construct()
Constructor which refers to 'config/authlete.php' and sets up the corresponding properties.
public
__construct() : mixed