ManaPHP\Loader::___requireFile PHP Method

___requireFile() protected method

If a file exists, require it from the file system.
protected ___requireFile ( string $file ) : true
$file string The file to require.
return true
    protected function ___requireFile($file)
    {
        if (PHP_EOL !== "\n") {
            $realPath = str_replace('\\', '/', realpath($file));
            if ($realPath !== $file) {
                trigger_error("File name ({$realPath}) case mismatch for .{$file}", E_USER_ERROR);
            }
        }
        /** @noinspection PhpIncludeInspection */
        require $file;
        return true;
    }