Viewing File: /usr/share/php/Symfony/Component/Yaml/autoload.php

<?php
// suggest:
if (stream_resolve_include_path(__DIR__ . '/../Console/autoload.php')) { include_once __DIR__ . '/../Console/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(
                'symfony\\component\\yaml\\command\\lintcommand' => '/Command/LintCommand.php',
                'symfony\\component\\yaml\\dumper' => '/Dumper.php',
                'symfony\\component\\yaml\\escaper' => '/Escaper.php',
                'symfony\\component\\yaml\\exception\\dumpexception' => '/Exception/DumpException.php',
                'symfony\\component\\yaml\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
                'symfony\\component\\yaml\\exception\\parseexception' => '/Exception/ParseException.php',
                'symfony\\component\\yaml\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
                'symfony\\component\\yaml\\inline' => '/Inline.php',
                'symfony\\component\\yaml\\parser' => '/Parser.php',
                'symfony\\component\\yaml\\tag\\taggedvalue' => '/Tag/TaggedValue.php',
                'symfony\\component\\yaml\\unescaper' => '/Unescaper.php',
                'symfony\\component\\yaml\\yaml' => '/Yaml.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd
Back to Directory File Manager