summaryrefslogtreecommitdiff
path: root/vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php')
-rw-r--r--vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php b/vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php
deleted file mode 100644
index d8de2b00..00000000
--- a/vendor/lusitanian/oauth/tests/Mocks/OAuth2/Service/Fake.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace OAuthTest\Mocks\OAuth2\Service;
-
-use OAuth\OAuth2\Service\AbstractService;
-
-class Fake extends AbstractService
-{
- const SCOPE_FOO = 'https://www.pieterhordijk.com/auth';
- const SCOPE_CUSTOM = 'custom';
-
- /**
- * {@inheritdoc}
- */
- public function getAuthorizationEndpoint()
- {
- }
-
- /**
- * {@inheritdoc}
- */
- public function getAccessTokenEndpoint()
- {
- }
-
- /**
- * {@inheritdoc}
- */
- protected function parseAccessTokenResponse($responseBody)
- {
- }
-}