1: <?php
2: /**
3: * This file is part of the FastFeed package.
4: *
5: * (c) Daniel González <daniel@desarrolla2.com>
6: *
7: * For the full copyright and license information, please view the LICENSE
8: * file that was distributed with this source code.
9: */
10: namespace FastFeed\Aggregator;
11:
12: use DOMElement;
13: use FastFeed\Item;
14:
15: /**
16: * ProcessorInterface
17: */
18: interface AggregatorInterface
19: {
20: /**
21: * Execute the Aggregator
22: *
23: * @param DOMElement $node
24: * @param Item $item
25: */
26: public function process(DOMElement $node, Item $item);
27: }
28: