summaryrefslogtreecommitdiff
path: root/autoload.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-09-18 12:20:59 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-09-18 12:20:59 +0100
commit2b15ee9eae6a98fba871b4c587cdd8cfc1b1b48a (patch)
treee3ceb3a87c11b925f0df0088da82427f793b2e14 /autoload.php
parent3431dc10bc8c9925dcda272855de379321d832b2 (diff)
Beginning of rewrite
Diffstat (limited to 'autoload.php')
-rw-r--r--autoload.php14
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;
+ }
+});