mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-29 18:09:22 +02:00
8 lines
313 B
PHP
8 lines
313 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';
|
|
}
|
|
}); |