1 | <?php |
||
8 | class Reader |
||
9 | { |
||
10 | /** @var ReaderInterface[] */ |
||
11 | private $readers; |
||
12 | |||
13 | /** |
||
14 | * Constructor |
||
15 | * |
||
16 | * @param ReaderInterface[] $readers |
||
17 | */ |
||
18 | public function __construct(array $readers) |
||
22 | |||
23 | /** |
||
24 | * Read feed from JSON |
||
25 | * |
||
26 | * @param string $json |
||
27 | * @return \JDecool\JsonFeed\Feed |
||
28 | */ |
||
29 | public function createFromJson($json) |
||
46 | } |
||
47 |