PATH:
home
/
lab2454c
/
keebchat.com
/
vendor
/
abraham
/
twitteroauth
/
src
<?php /** * The MIT License * Copyright (c) 2007 Andy Smith */ declare(strict_types=1); namespace Abraham\TwitterOAuth; class Consumer { /** @var string */ public $key; /** @var string */ public $secret; /** @var string|null */ public $callbackUrl; /** * @param string|null $key * @param string|null $secret * @param null $callbackUrl */ public function __construct( ?string $key, ?string $secret, ?string $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]
[-] Request.php
[edit]
[-] Token.php
[edit]
[-] SignatureMethod.php
[edit]
[-] TwitterOAuthException.php
[edit]
[-] TwitterOAuth.php
[edit]
[-] Util.php
[edit]
[+]
Util
[-] Consumer.php
[edit]
[-] Response.php
[edit]