1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Communication\Process\NotificationProcess;
6
7 use Psr\Log\LoggerInterface;
8
9 interface NotificationProcessFactoryInterface
10 {
11 /**
12 * @param LoggerInterface $logger
13 *
14 * @return NotificationProcess
15 */
16 public function build(LoggerInterface $logger);
17 }
18