[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/vendor/carlos-mg89/oauth/src/OAuth/OAuth1/Signature/ -> SignatureInterface.php (source)

   1  <?php
   2  
   3  namespace OAuth\OAuth1\Signature;
   4  
   5  use OAuth\Common\Http\Uri\UriInterface;
   6  
   7  interface SignatureInterface
   8  {
   9      /**
  10       * @param string $algorithm
  11       */
  12      public function setHashingAlgorithm($algorithm);
  13  
  14      /**
  15       * @param string $token
  16       */
  17      public function setTokenSecret($token);
  18  
  19      /**
  20       * @param string       $method
  21       *
  22       * @return string
  23       */
  24      public function getSignature(UriInterface $uri, array $params, $method = 'POST');
  25  }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1