File: php-symfony-routing.autoload.php.tpl

package info (click to toggle)
symfony 3.4.22%2Bdfsg-2%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 47,488 kB
  • sloc: php: 283,163; xml: 6,070; sh: 476; ansic: 263; makefile: 119; pascal: 79
file content (39 lines) | stat: -rw-r--r-- 1,407 bytes parent folder | download | duplicates (2)
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
<?php
// suggest:
if (stream_resolve_include_path('Symfony/Component/HttpFoundation/autoload.php')){
    include_once 'Symfony/Component/HttpFoundation/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/Config/autoload.php')){
    include_once 'Symfony/Component/Config/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/Yaml/autoload.php')){
    include_once 'Symfony/Component/Yaml/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/ExpressionLanguage/autoload.php')){
    include_once 'Symfony/Component/ExpressionLanguage/autoload.php';
}
if (stream_resolve_include_path('Doctrine/Common/Annotations/autoload.php')){
    include_once 'Doctrine/Common/Annotations/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/DependencyInjection/autoload.php')){
    include_once 'Symfony/Component/DependencyInjection/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(
                ___CLASSLIST___
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(___BASEDIR___$classes[$cn])) {
            require ___BASEDIR___$classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd