N98\MagerunBootstrap::includeIfExists PHP Method

includeIfExists() public static method

public static includeIfExists ( string $file ) : mixed
$file string
return mixed
    public static function includeIfExists($file)
    {
        if (file_exists($file)) {
            return include $file;
        }
    }