1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\SignatureCalculator\Encoder\Algorithms;
6
7 class AlgorithmsProvider implements AlgorithmsProviderInterface
8 {
9 /**
10 * @return AlgorithmInterface[]
11 */
12 public function getAlgorithms()
13 {
14 return [
15 new Md5Algorithm(),
16 new Sha1Algorithm(),
17 new Sha256Algorithm()
18 ];
19 }
20 }
21