ValetDriver::isActualFile PHP 메소드

isActualFile() 보호된 메소드

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