| Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-oauth/test/TestAsset/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-oauth/test/TestAsset/Consumer48231.php |
<?php
namespace LaminasTest\OAuth\TestAsset;
use Laminas\OAuth\Consumer;
use Laminas\OAuth\Token\Access;
use Laminas\OAuth\Token\Request;
class Consumer48231 extends Consumer
{
public function __construct(array $options = [])
{
$this->requestToken = new Request();
$this->accessToken = new Access();
parent::__construct($options);
}
public function getCallbackUrl(): string
{
return 'http://www.example.com/local';
}
}