![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-feed/src/Reader/ |
<?php declare(strict_types=1); namespace Laminas\Feed\Reader; interface ReaderImportInterface { /** * Import a feed by providing a URI * * @param string $uri The URI to the feed * @param null|string $etag OPTIONAL Last received ETag for this resource * @param null|string $lastModified OPTIONAL Last-Modified value for this resource * @return Feed\FeedInterface * @throws Exception\RuntimeException */ public static function import($uri, $etag = null, $lastModified = null); /** * Import a feed from a remote URI * * Performs similarly to import(), except it uses the HTTP client passed to * the method, and does not take into account cached data. * * Primary purpose is to make it possible to use the Reader with alternate * HTTP client implementations. * * @param string $uri * @return Feed\FeedInterface * @throws Exception\RuntimeException If response is not an Http\ResponseInterface. */ public static function importRemoteFeed($uri, Http\ClientInterface $client); /** * Import a feed from a string * * @param string $string * @return Feed\FeedInterface * @throws Exception\InvalidArgumentException * @throws Exception\RuntimeException */ public static function importString($string); /** * Imports a feed from a file located at $filename. * * @param string $filename * @return Feed\FeedInterface * @throws Exception\RuntimeException */ public static function importFile($filename); }