Create an insecure bank application
This commit is contained in:
7
webroot/autoload.php
Normal file
7
webroot/autoload.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
spl_autoload_register(function ($className) {
|
||||
$pathName = str_replace('\\', '/', $className);
|
||||
include __DIR__ . '/lib/' . $pathName . '.php';
|
||||
});
|
Reference in New Issue
Block a user