1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Serializer;
6
7 use Team3\PayU\Order\Model\OrderInterface;
8
9 /**
10 * This class can specify serialization groups used to serialize {@link OrderInterface}
11 *
12 * Interface GroupsSpecifierInterface
13 * @package Team3\PayU\Serializer
14 */
15 interface GroupsSpecifierInterface
16 {
17 /**
18 * @param OrderInterface $order
19 *
20 * @return array
21 */
22 public function specifyGroups(OrderInterface $order);
23 }
24