File "PlainTextSignature.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/league/oauth1-client/src/Signature/PlainTextSignature.php
File size: 381 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace League\OAuth1\Client\Signature;

class PlainTextSignature extends Signature implements SignatureInterface
{
    /**
     * @inheritDoc
     */
    public function method()
    {
        return 'PLAINTEXT';
    }

    /**
     * @inheritDoc
     */
    public function sign($uri, array $parameters = [], $method = 'POST')
    {
        return $this->key();
    }
}