miniflux-legacy/vendor/miniflux/picofeed/lib/PicoFeed/Generator/ContentGeneratorInterface.php

24 lines
375 B
PHP

<?php
namespace PicoFeed\Generator;
use PicoFeed\Parser\Item;
/**
* Content Generator Interface
*
* @package PicoFeed\Generator
* @author Frederic Guillot
*/
interface ContentGeneratorInterface
{
/**
* Execute Content Generator
*
* @access public
* @param Item $item
* @return boolean
*/
public function execute(Item $item);
}