/usr/share/php/Sabre/VObject/autoload.php is in php-sabre-vobject 2.1.7-4.
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 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'sabre\\vobject\\component' => '/Component.php',
'sabre\\vobject\\component\\valarm' => '/Component/VAlarm.php',
'sabre\\vobject\\component\\vcalendar' => '/Component/VCalendar.php',
'sabre\\vobject\\component\\vcard' => '/Component/VCard.php',
'sabre\\vobject\\component\\vevent' => '/Component/VEvent.php',
'sabre\\vobject\\component\\vfreebusy' => '/Component/VFreeBusy.php',
'sabre\\vobject\\component\\vjournal' => '/Component/VJournal.php',
'sabre\\vobject\\component\\vtodo' => '/Component/VTodo.php',
'sabre\\vobject\\datetimeparser' => '/DateTimeParser.php',
'sabre\\vobject\\document' => '/Document.php',
'sabre\\vobject\\elementlist' => '/ElementList.php',
'sabre\\vobject\\freebusygenerator' => '/FreeBusyGenerator.php',
'sabre\\vobject\\node' => '/Node.php',
'sabre\\vobject\\parameter' => '/Parameter.php',
'sabre\\vobject\\parseexception' => '/ParseException.php',
'sabre\\vobject\\property' => '/Property.php',
'sabre\\vobject\\property\\compound' => '/Property/Compound.php',
'sabre\\vobject\\property\\datetime' => '/Property/DateTime.php',
'sabre\\vobject\\property\\multidatetime' => '/Property/MultiDateTime.php',
'sabre\\vobject\\reader' => '/Reader.php',
'sabre\\vobject\\recurrenceiterator' => '/RecurrenceIterator.php',
'sabre\\vobject\\splitter\\icalendar' => '/Splitter/ICalendar.php',
'sabre\\vobject\\splitter\\splitterinterface' => '/Splitter/SplitterInterface.php',
'sabre\\vobject\\splitter\\vcard' => '/Splitter/VCard.php',
'sabre\\vobject\\stringutil' => '/StringUtil.php',
'sabre\\vobject\\timezoneutil' => '/TimeZoneUtil.php',
'sabre\\vobject\\version' => '/Version.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|