/
home
/
obinna
/
html
/
cravings
/
vendor
/
league
/
oauth1-client
/
src
/
Client
/
Signature
/
Upload File
HOME
<?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 = array(), $method = 'POST') { return $this->key(); } }