aboutsummaryrefslogtreecommitdiff
path: root/autoload.php
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@submelon.tech>2018-08-26 01:38:28 -0400
committerKevin Hoerr <kjhoerr@submelon.tech>2018-08-31 23:24:45 -0400
commit0965d62be00a7820f97284704dc71f37e661b412 (patch)
tree5a5c9d69062e24aa926eb30447c5ff27e0a65492 /autoload.php
parent1e3946f04b5b602d3869a285d897acb0ba2b3c35 (diff)
downloadaugust-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.gz
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.bz2
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.zip
Begin migration to Rust; Add actix-web, diesel as main dependencies
Diffstat (limited to 'autoload.php')
-rw-r--r--autoload.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/autoload.php b/autoload.php
deleted file mode 100644
index b9d471b..0000000
--- a/autoload.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-// Borrowed and modified from PSR-4 Closure Example
-spl_autoload_register(
- function ($class) {
- $prefix = 'AugustOffensive\\';
- $relative_class = substr($class, strlen($prefix));
-
- // find file in /private/ in respective namespace path
- $file = __DIR__ . '/private/' . str_replace('\\', '/', $relative_class) . '.php';
-
- // if the file exists, require it
- if (file_exists($file)) {
- require $file;
- }
- }
-);