File: php-symfony-validator.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 (54 lines) | stat: -rw-r--r-- 1,993 bytes parent folder | download
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
<?php
// require:
require_once 'Symfony/Component/Translation/autoload.php';

// suggest:
if (stream_resolve_include_path('Symfony/Component/Cache/autoload.php')){
    include_once 'Symfony/Component/Cache/autoload.php';
}
if (stream_resolve_include_path('Doctrine/Common/Annotations/autoload.php')){
    include_once 'Doctrine/Common/Annotations/autoload.php';
}
if (stream_resolve_include_path('Doctrine/Common/Cache/autoload.php')){
    include_once 'Doctrine/Common/Cache/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/HttpFoundation/autoload.php')){
    include_once 'Symfony/Component/HttpFoundation/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/Intl/autoload.php')){
    include_once 'Symfony/Component/Intl/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/Config/autoload.php')){
    include_once 'Symfony/Component/Config/autoload.php';
}
if (stream_resolve_include_path('Egulias/EmailValidator/autoload.php')){
    include_once 'Egulias/EmailValidator/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/PropertyAccess/autoload.php')){
    include_once 'Symfony/Component/PropertyAccess/autoload.php';
}
if (stream_resolve_include_path('Symfony/Component/ExpressionLanguage/autoload.php')){
    include_once 'Symfony/Component/ExpressionLanguage/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