mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-12-28 05:22:24 +00:00
43 lines
780 B
PHP
43 lines
780 B
PHP
<?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]";
|
|
}
|
|
}
|