mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
9 lines
274 B
PHP
9 lines
274 B
PHP
<?php
|
|
|
|
spl_autoload_register(function ($class) {
|
|
if (preg_match('#^DesignPatterns\\\\(.+)$#', $class, $ret)) {
|
|
$relPath = str_replace('\\', DIRECTORY_SEPARATOR, $ret[1]);
|
|
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . $relPath . '.php';
|
|
}
|
|
});
|