| Server IP : 193.239.44.106 / Your IP : 216.73.216.199 Web Server : Apache System : Linux web5 6.18.41-1 #1 SMP PREEMPT_DYNAMIC Fri Jul 31 10:41:42 CEST 2026 x86_64 User : ( 10117) PHP Version : 8.2.32 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/virtualki/259324/wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/ |
Upload File : |
<?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]";
}
}