| Current Path : /home/rtorresani/www/vendor/laminas/laminas-oauth/test/TestAsset/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-oauth/test/TestAsset/Consumer34879.php |
<?php
namespace LaminasTest\OAuth\TestAsset;
use Laminas\OAuth\Consumer;
class Consumer34879 extends Consumer
{
public function getUserAuthorizationUrl()
{
return 'http://www.example.com/authorize';
}
public function getCallbackUrl()
{
return 'http://www.example.com/local';
}
public function getLastRequestToken()
{
$r = new Token34879;
return $r;
}
}