summaryrefslogtreecommitdiff
path: root/vendor/miniflux/picofeed/lib/PicoFeed/Scraper/ParserInterface.php
blob: 3ded4b1c4760fac38ee2a0cf450d0be360b48e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace PicoFeed\Scraper;

interface ParserInterface
{
    /**
     * Execute the parser and return the contents.
     *
     * @return string
     */
    public function execute();

    /**
     * Find link for next page of the article.
     *
     * @return string
     */
    public function findNextLink();
}