properly close autoload function

This commit is contained in:
Joe 2021-03-24 12:21:49 -05:00
parent 8c231b3678
commit 77409ed3d7
Signed by: joe
GPG Key ID: 8595A3F8F2CE1B74
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ spl_autoload_register(function($class) {
if ( file_exists($classpath)) {
require_once $classpath;
}
}
});
$user = new User($db);