CryptMock::encrypt()   A
last analyzed

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 2
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * @project Promopult Integra client library
4
 */
5
6
namespace Promopult\Integra\Test;
7
8
class CryptMock implements \Promopult\Integra\CryptInterface
9
{
10
    public function encrypt(string $s, string $ck): string { return $s; }
11
    public function decrypt(string $s, string $ck): string { return $s; }
12
}
13