for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Risan\OAuth1\Signature;
class PlainTextSigner implements SignerInterface, KeyBasedSignerInterface
{
use CanGetSigningKey;
/**
* {@inheritdoc}
*/
public function getMethod()
return 'PLAINTEXT';
}
public function sign($uri, array $parameters = [], $httpMethod = 'POST')
return $this->getKey();