diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2021-09-18 12:20:59 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2021-09-18 12:20:59 +0100 |
| commit | 2b15ee9eae6a98fba871b4c587cdd8cfc1b1b48a (patch) | |
| tree | e3ceb3a87c11b925f0df0088da82427f793b2e14 /autoload.php | |
| parent | 3431dc10bc8c9925dcda272855de379321d832b2 (diff) | |
Beginning of rewrite
Diffstat (limited to 'autoload.php')
| -rw-r--r-- | autoload.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/autoload.php b/autoload.php new file mode 100644 index 0000000..cb673fa --- /dev/null +++ b/autoload.php @@ -0,0 +1,14 @@ +<?php + +declare(strict_types=1); + +spl_autoload_register(function (string $class) +{ + $base_dir = __DIR__ . '/src/'; + + $file = $base_dir . str_replace('\\', '/', $class) . '.php'; + + if (file_exists($file)) { + require $file; + } +}); |
