first commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
require_once 'Zxing/Common/customFunctions.php';
|
||||
|
||||
spl_autoload_register(function (string $className) {
|
||||
$filePath = __DIR__ . DIRECTORY_SEPARATOR . $className;
|
||||
$filePath = str_replace('\\', DIRECTORY_SEPARATOR, $filePath) . '.php';
|
||||
if (file_exists($filePath)) {
|
||||
require_once $filePath;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user