Overview

Namespaces

  • FastFeed
    • Aggregator
    • Cache
    • Exception
    • Logger
    • Parser
    • Processor
  • PHP

Classes

  • AbstractDomParser
  • AbstractParser
  • AtomParser
  • RSSParser

Interfaces

  • ParserInterface
  • Overview
  • Namespace
  • Class
  • Tree
 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\Parser;
11: 
12: /**
13:  * ParserInterface
14:  */
15: interface ParserInterface
16: {
17:     /**
18:      * Retrieve a Items's array
19:      *
20:      * @param $content
21:      *
22:      * @return array
23:      */
24:     public function getNodes($content);
25: }
26: 
API documentation generated by ApiGen 2.8.0