/usr/share/php/PicoFeed/autoload.php is in php-picofeed 0.1.18-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <?php
require_once 'ZendXml/autoload.php';
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'picofeed\\client\\client' => '/Client/Client.php',
'picofeed\\client\\clientexception' => '/Client/ClientException.php',
'picofeed\\client\\curl' => '/Client/Curl.php',
'picofeed\\client\\httpheaders' => '/Client/HttpHeaders.php',
'picofeed\\client\\invalidcertificateexception' => '/Client/InvalidCertificateException.php',
'picofeed\\client\\invalidurlexception' => '/Client/InvalidUrlException.php',
'picofeed\\client\\maxredirectexception' => '/Client/MaxRedirectException.php',
'picofeed\\client\\maxsizeexception' => '/Client/MaxSizeException.php',
'picofeed\\client\\stream' => '/Client/Stream.php',
'picofeed\\client\\timeoutexception' => '/Client/TimeoutException.php',
'picofeed\\client\\url' => '/Client/Url.php',
'picofeed\\config\\config' => '/Config/Config.php',
'picofeed\\encoding\\encoding' => '/Encoding/Encoding.php',
'picofeed\\filter\\attribute' => '/Filter/Attribute.php',
'picofeed\\filter\\filter' => '/Filter/Filter.php',
'picofeed\\filter\\html' => '/Filter/Html.php',
'picofeed\\filter\\tag' => '/Filter/Tag.php',
'picofeed\\logging\\logger' => '/Logging/Logger.php',
'picofeed\\parser\\atom' => '/Parser/Atom.php',
'picofeed\\parser\\dateparser' => '/Parser/DateParser.php',
'picofeed\\parser\\feed' => '/Parser/Feed.php',
'picofeed\\parser\\item' => '/Parser/Item.php',
'picofeed\\parser\\malformedxmlexception' => '/Parser/MalformedXmlException.php',
'picofeed\\parser\\parser' => '/Parser/Parser.php',
'picofeed\\parser\\parserexception' => '/Parser/ParserException.php',
'picofeed\\parser\\rss10' => '/Parser/Rss10.php',
'picofeed\\parser\\rss20' => '/Parser/Rss20.php',
'picofeed\\parser\\rss91' => '/Parser/Rss91.php',
'picofeed\\parser\\rss92' => '/Parser/Rss92.php',
'picofeed\\parser\\xmlentityexception' => '/Parser/XmlEntityException.php',
'picofeed\\parser\\xmlparser' => '/Parser/XmlParser.php',
'picofeed\\picofeedexception' => '/PicoFeedException.php',
'picofeed\\reader\\favicon' => '/Reader/Favicon.php',
'picofeed\\reader\\reader' => '/Reader/Reader.php',
'picofeed\\reader\\readerexception' => '/Reader/ReaderException.php',
'picofeed\\reader\\subscriptionnotfoundexception' => '/Reader/SubscriptionNotFoundException.php',
'picofeed\\reader\\unsupportedfeedformatexception' => '/Reader/UnsupportedFeedFormatException.php',
'picofeed\\scraper\\candidateparser' => '/Scraper/CandidateParser.php',
'picofeed\\scraper\\parserinterface' => '/Scraper/ParserInterface.php',
'picofeed\\scraper\\ruleloader' => '/Scraper/RuleLoader.php',
'picofeed\\scraper\\ruleparser' => '/Scraper/RuleParser.php',
'picofeed\\scraper\\scraper' => '/Scraper/Scraper.php',
'picofeed\\serialization\\export' => '/Serialization/Export.php',
'picofeed\\serialization\\import' => '/Serialization/Import.php',
'picofeed\\syndication\\atom' => '/Syndication/Atom.php',
'picofeed\\syndication\\rss20' => '/Syndication/Rss20.php',
'picofeed\\syndication\\writer' => '/Syndication/Writer.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|