Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | CRAP |
<?php | |
/** | |
* @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl> | |
*/ | |
namespace Team3\PayU\Configuration; | |
use Team3\PayU\Configuration\Credentials\CredentialsInterface; | |
/** | |
* PayU API basic configuration | |
* @package Team3\PayU\Configuration | |
*/ | |
interface ConfigurationInterface | |
{ | |
/** | |
* @return string | |
*/ | |
public function getDomain(); | |
/** | |
* @return string | |
*/ | |
public function getPath(); | |
/** | |
* @return string | |
*/ | |
public function getProtocol(); | |
/** | |
* @return string | |
*/ | |
public function getVersion(); | |
/** | |
* @return string | |
*/ | |
public function getAPIUrl(); | |
/** | |
* @return CredentialsInterface | |
*/ | |
public function getCredentials(); | |
} |