| Total Complexity | 4 | 
| Total Lines | 6 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 5 | class CredentialsMock implements \Promopult\Integra\CredentialsInterface | ||
| 6 | { | ||
| 7 |     public function getHash(): string { return 'hash'; } | ||
| 8 |     public function getCryptKey(): string { return 'key'; } | ||
| 9 |     public function getPartnerPath(): string { return 'path'; } | ||
| 10 |     public function getApiHost(): string { return 'host'; } | ||
| 11 | } | ||
| 12 |