Create an insecure bank application

This commit is contained in:
2024-06-01 15:13:50 +02:00
commit 2133574cae
40 changed files with 1370 additions and 0 deletions

7
webroot/autoload.php Normal file
View File

@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
spl_autoload_register(function ($className) {
$pathName = str_replace('\\', '/', $className);
include __DIR__ . '/lib/' . $pathName . '.php';
});