Skip to content

Commit 04fbbd1

Browse files
authored
Update autoload.php
1 parent 129c018 commit 04fbbd1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

autoload.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
3-
4-
52
function classAutoloader(string $className): void
63
{
74
$baseDir = __DIR__.DIRECTORY_SEPARATOR."Controllers".DIRECTORY_SEPARATOR;
@@ -14,8 +11,6 @@ function classAutoloader(string $className): void
1411
if (file_exists($filePath)){
1512
include_once($filePath);
1613
}
17-
1814
}
1915

20-
21-
spl_autoload_register("classAutoloader");
16+
spl_autoload_register("classAutoloader");

0 commit comments

Comments
 (0)