Completed
Push — master ( 1bb023...ecb5f2 )
by Dmitry
01:40
created

IdentityMock::getCryptKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Promopult\Integra\Test;
4
5
class IdentityMock implements \Promopult\Integra\IdentityInterface
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