for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php declare(strict_types=1);
/**
* This function is registered as the autoloader for classes.
*/
function get_class_loc(string $className): void {
$className = str_replace('\\', DIRECTORY_SEPARATOR, $className);
$classFile = LIB . 'Default/' . $className . '.php';
if (is_file($classFile)) {
require($classFile);
}