Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'server/vendor/abraham/twitteroauth/src/Consumer.php')
-rw-r--r--server/vendor/abraham/twitteroauth/src/Consumer.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/server/vendor/abraham/twitteroauth/src/Consumer.php b/server/vendor/abraham/twitteroauth/src/Consumer.php
deleted file mode 100644
index ceaf1ef..0000000
--- a/server/vendor/abraham/twitteroauth/src/Consumer.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-/**
- * The MIT License
- * Copyright (c) 2007 Andy Smith
- */
-namespace Abraham\TwitterOAuth;
-
-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]";
- }
-}