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