aboutsummaryrefslogtreecommitdiffstats
path: root/library/oauth2/test/lib/OAuth2/Storage/NullStorage.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/oauth2/test/lib/OAuth2/Storage/NullStorage.php')
-rw-r--r--library/oauth2/test/lib/OAuth2/Storage/NullStorage.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/library/oauth2/test/lib/OAuth2/Storage/NullStorage.php b/library/oauth2/test/lib/OAuth2/Storage/NullStorage.php
deleted file mode 100644
index 6caa62068..000000000
--- a/library/oauth2/test/lib/OAuth2/Storage/NullStorage.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace OAuth2\Storage;
-
-/**
-*
-*/
-class NullStorage extends Memory
-{
- private $name;
- private $description;
-
- public function __construct($name, $description = null)
- {
- $this->name = $name;
- $this->description = $description;
- }
-
- public function __toString()
- {
- return $this->name;
- }
-
- public function getMessage()
- {
- if ($this->description) {
- return $this->description;
- }
-
- return $this->name;
- }
-}