| Current Path : /home/rtorresani/www/vendor/laminas/laminas-oauth/test/TestAsset/ |
| Current File : //home/rtorresani/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()
{
return 'http://www.example.com/local';
}
}