function includeIfExists(string $file) : ?ClassLoader { return file_exists($file) ? include $file : null; }