JonathanTorres\Construct\Commands\ConstructCommand::warnAndOverwriteInvalidSettingsWithDefaults PHP Method

warnAndOverwriteInvalidSettingsWithDefaults() private method

Shows warnings and sets a new settings which overwrites invalid settings with default values.
private warnAndOverwriteInvalidSettingsWithDefaults ( Symfony\Component\Console\Output\OutputInterface $output ) : void
$output Symfony\Component\Console\Output\OutputInterface
return void
    private function warnAndOverwriteInvalidSettingsWithDefaults($output)
    {
        $this->projectNameContainsPhpWarning($output);
        $license = $this->supportedLicenseWarning($output);
        $testFramework = $this->testFrameworkWarning($output);
        $phpVersion = $this->phpVersionWarning($output);
        $this->settings = new Settings($this->settings->getProjectName(), $testFramework, $license, $this->settings->getNamespace(), $this->settings->withGitInit(), $this->settings->withPhpcsConfiguration(), $this->settings->getComposerKeywords(), $this->settings->withVagrantfile(), $this->settings->withEditorConfig(), $phpVersion, $this->settings->withEnvironmentFiles(), $this->settings->withLgtmConfiguration(), $this->settings->withGithubTemplates(), $this->settings->withCodeOfConduct(), $this->settings->withGithubDocs());
    }