Working version of project

This commit is contained in:
Mateusz Pieła 2021-04-26 23:01:23 +02:00
parent 0b21896cd5
commit 5411c00ee9
9 changed files with 259 additions and 46 deletions

View file

@ -3,7 +3,6 @@ require ROOT_DIR . "/vendor/autoload.php";
function autoLoader($classname) {
$file = ROOT_DIR . '\\' . $classname . '.php';
print_r($file);
$file = str_replace('\\', DIRECTORY_SEPARATOR, $file);
include_once $file;
}