for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @project Promopult Integra client library
*/
namespace Promopult\Integra\Test;
class CryptMock implements \Promopult\Integra\CryptInterface
{
public function encrypt(string $s, string $ck): string { return $s; }
public function decrypt(string $s, string $ck): string { return $s; }
}