<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'sebastianbergmann\\type\\callabletype' => '/type/CallableType.php',
                'sebastianbergmann\\type\\exception' => '/exception/Exception.php',
                'sebastianbergmann\\type\\falsetype' => '/type/FalseType.php',
                'sebastianbergmann\\type\\genericobjecttype' => '/type/GenericObjectType.php',
                'sebastianbergmann\\type\\intersectiontype' => '/type/IntersectionType.php',
                'sebastianbergmann\\type\\iterabletype' => '/type/IterableType.php',
                'sebastianbergmann\\type\\mixedtype' => '/type/MixedType.php',
                'sebastianbergmann\\type\\nevertype' => '/type/NeverType.php',
                'sebastianbergmann\\type\\nulltype' => '/type/NullType.php',
                'sebastianbergmann\\type\\objecttype' => '/type/ObjectType.php',
                'sebastianbergmann\\type\\parameter' => '/Parameter.php',
                'sebastianbergmann\\type\\reflectionmapper' => '/ReflectionMapper.php',
                'sebastianbergmann\\type\\runtimeexception' => '/exception/RuntimeException.php',
                'sebastianbergmann\\type\\simpletype' => '/type/SimpleType.php',
                'sebastianbergmann\\type\\statictype' => '/type/StaticType.php',
                'sebastianbergmann\\type\\truetype' => '/type/TrueType.php',
                'sebastianbergmann\\type\\type' => '/type/Type.php',
                'sebastianbergmann\\type\\typename' => '/TypeName.php',
                'sebastianbergmann\\type\\uniontype' => '/type/UnionType.php',
                'sebastianbergmann\\type\\unknowntype' => '/type/UnknownType.php',
                'sebastianbergmann\\type\\voidtype' => '/type/VoidType.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd
