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; | |
interface AlgorithmsProviderInterface | |
{ | |
/** | |
* @return AlgorithmInterface[] | |
*/ | |
public function getAlgorithms(); | |
} |