1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Order\Autocomplete;
6
7 use Team3\PayU\Configuration\ConfigurationInterface;
8 use Team3\PayU\Order\Model\OrderInterface;
9
10 interface OrderAutocompleteInterface
11 {
12 /**
13 * @param OrderInterface $order
14 * @param ConfigurationInterface $configuration
15 */
16 public function autocomplete(
17 OrderInterface $order,
18 ConfigurationInterface $configuration
19 );
20 }
21