﻿<?php

// Require
require_once 'SebastianBergmann/ObjectReflector/autoload.php';
require_once 'SebastianBergmann/RecursionContext/autoload.php';

// Suggest

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'sebastianbergmann\\globalstate\\codeexporter' => '/CodeExporter.php',
                'sebastianbergmann\\globalstate\\exception' => '/exceptions/Exception.php',
                'sebastianbergmann\\globalstate\\excludelist' => '/ExcludeList.php',
                'sebastianbergmann\\globalstate\\restorer' => '/Restorer.php',
                'sebastianbergmann\\globalstate\\runtimeexception' => '/exceptions/RuntimeException.php',
                'sebastianbergmann\\globalstate\\snapshot' => '/Snapshot.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd

// Fil