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\Processor;
11:
12: /**
13: * ProcessorInterface
14: */
15: interface ProcessorInterface
16: {
17: /**
18: * Execute processor
19: *
20: * @param array $items
21: *
22: * @return $items
23: */
24: public function process(array $items);
25: }
26: