InfyOm\Generator\Commands\BaseCommand::confirmOverwrite PHP Method

confirmOverwrite() protected method

protected confirmOverwrite ( $fileName, string $prompt = '' ) : boolean
$fileName
$prompt string
return boolean
    protected function confirmOverwrite($fileName, $prompt = '')
    {
        $prompt = empty($prompt) ? $fileName . ' already exists. Do you want to overwrite it? [y|N]' : $prompt;
        return $this->confirm($prompt, false);
    }