Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | CRAP |
<?php | |
/** | |
* This file is part of the FastFeed package. | |
* | |
* (c) Daniel González <daniel@desarrolla2.com> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ | |
namespace FastFeed\Processor; | |
/** | |
* ProcessorInterface | |
*/ | |
interface ProcessorInterface | |
{ | |
/** | |
* Execute processor | |
* | |
* @param array $items | |
* | |
* @return $items | |
*/ | |
public function process(array $items); | |
} |