golden hour
/home/phakp/public_html/erp/includes/OAuth/Common/Consumer
⬆️ Go Up
Upload
File/Folder
Size
Actions
Credentials.php
1.04 KB
Del
OK
CredentialsInterface.php
377 B
Del
OK
Edit: CredentialsInterface.php
<?php namespace OAuth\Common\Consumer; /** * Credentials Interface, credentials should implement this. */ interface CredentialsInterface { /** * @return string */ public function getCallbackUrl(); /** * @return string */ public function getConsumerId(); /** * @return string */ public function getConsumerSecret(); }
Save