ValetDriver::isActualFile PHP Method

isActualFile() protected method

Determine if the path is a file and not a directory.
protected isActualFile ( string $path ) : boolean
$path string
return boolean
    protected function isActualFile($path)
    {
        return !is_dir($path) && file_exists($path);
    }