PATH:
home
/
lab2454c
/
elementalrock.com
/
wp-content
/
plugins
/
zahar-core
/
TwitterAPP
<?php /** * The MIT License * Copyright (c) 2007 Andy Smith */ class Consumer { /** @var string */ public $key; /** @var string */ public $secret; /** @var string|null */ public $callbackUrl; /** * @param string $key * @param string $secret * @param null $callbackUrl */ public function __construct($key, $secret, $callbackUrl = null) { $this->key = $key; $this->secret = $secret; $this->callbackUrl = $callbackUrl; } /** * @return string */ public function __toString() { return "Consumer[key=$this->key,secret=$this->secret]"; } }
[+]
..
[-] Config.php
[edit]
[-] HmacSha1.php
[edit]
[-] cacert.pem
[edit]
[-] Request.php
[edit]
[-] Token.php
[edit]
[-] SignatureMethod.php
[edit]
[-] TwitterOAuthException.php
[edit]
[-] TwitterOAuth.php
[edit]
[-] Util.php
[edit]
[-] .htaccess
[edit]
[+]
Util
[-] Consumer.php
[edit]
[-] TwitterAPIExchange.php
[edit]
[-] Response.php
[edit]