Code Duplication    Length = 3-3 lines in 2 locations

src/Openl10n/Cli/Command/InitCommand.php 2 locations

@@ 88-90 (lines=3) @@
85
            unset($this->configuration['server']['use_ssl']);
86
        }
87
88
        if (null !== $port = $server['port']) {
89
            $this->configuration['server']['port'] = $port;
90
        }
91
92
        if (null !== $username = $server['user']) {
93
            $this->configuration['server']['username'] = $username;
@@ 96-98 (lines=3) @@
93
            $this->configuration['server']['username'] = $username;
94
        }
95
96
        if (null !== $password = $server['pass']) {
97
            $this->configuration['server']['password'] = $password;
98
        }
99
100
        if (null !== $projectSlug = $input->getArgument('project')) {
101
            $this->configuration['project'] = $projectSlug;