Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | CRAP |
<?php | |
/** | |
* @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl> | |
*/ | |
namespace Team3\PayU\SignatureCalculator\Encoder\Algorithms; | |
/** | |
* Represent algorithm in which encrypt/hash some data. | |
* | |
* Interface AlgorithmInterface | |
* @package Team3\PayU\SignatureCalculator\Encoder\Algorithms | |
*/ | |
interface AlgorithmInterface | |
{ | |
/** | |
* @return string | |
*/ | |
public function getName(); | |
} |