PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
vendor
/
paypal
/
sdk-core-php
/
lib
/
PayPal
/
Auth
<?php namespace PayPal\Auth; /** * Interface that represents API credentials */ abstract class IPPCredential { /** * * @var IPPThirdPartyAuthorization */ protected $thirdPartyAuthorization; public function setThirdPartyAuthorization($thirdPartyAuthorization) { $this->thirdPartyAuthorization = $thirdPartyAuthorization; } public function getThirdPartyAuthorization() { return $this->thirdPartyAuthorization; } public abstract function validate(); }
[+]
..
[-] PPSubjectAuthorization.php
[edit]
[-] IPPThirdPartyAuthorization.php
[edit]
[+]
Oauth
[-] .Auth.php
[edit]
[-] PPSignatureCredential.php
[edit]
[-] PPTokenAuthorization.php
[edit]
[-] PPCertificateCredential.php
[edit]
[-] IPPCredential.php
[edit]
[+]
Openid