Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-oauth/test/TestAsset/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-oauth/test/TestAsset/Consumer32874b.php

<?php

namespace LaminasTest\OAuth\TestAsset;

use Laminas\OAuth\Consumer;

class Consumer32874b extends Consumer
{
    public function getConsumerKey()
    {
        return '1234567890';
    }

    public function getSignatureMethod()
    {
        return 'HMAC-SHA1';
    }

    public function getVersion()
    {
        return '1.0';
    }

    public function getRequestTokenUrl()
    {
        return 'http://www.example.com/request';
    }

    public function getCallbackUrl()
    {
        return null;
    }
}