File "Consumer.php"

Full Path: /var/www/bvnghean.vn/wp-content/upgrade/updraftplus.1.23.12/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php
File size: 332 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Eher\OAuth;

class Consumer {
  public $key;
  public $secret;

  function __construct($key, $secret, $callback_url=NULL) {
    $this->key = $key;
    $this->secret = $secret;
    $this->callback_url = $callback_url;
  }

  function __toString() {
    return "Consumer[key=$this->key,secret=$this->secret]";
  }
}