﻿<?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\\template\\exception' => '/exceptions/Exception.php',
                'sebastianbergmann\\template\\invalidargumentexception' => '/exceptions/InvalidArgumentException.php',
                'sebastianbergmann\\template\\runtimeexception' => '/exceptions/RuntimeException.php',
                'sebastianbergmann\\template\\template' => '/Template.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreE