Fixed inspections

This commit is contained in:
Alejandro Celaya 2017-07-03 13:11:45 +02:00
parent 584e1f5643
commit c3cc88f03e

View File

@ -4,6 +4,7 @@ namespace Shlinkio\Shlink\CLI\Command\Install;
use Shlinkio\Shlink\Common\Util\StringUtilsTrait; use Shlinkio\Shlink\Common\Util\StringUtilsTrait;
use Shlinkio\Shlink\Core\Service\UrlShortener; use Shlinkio\Shlink\Core\Service\UrlShortener;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Exception\LogicException;
use Symfony\Component\Console\Exception\RuntimeException; use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Helper\ProcessHelper; use Symfony\Component\Console\Helper\ProcessHelper;
use Symfony\Component\Console\Helper\QuestionHelper; use Symfony\Component\Console\Helper\QuestionHelper;
@ -48,10 +49,11 @@ abstract class AbstractInstallCommand extends Command
/** /**
* InstallCommand constructor. * InstallCommand constructor.
* @param WriterInterface $configWriter * @param WriterInterface $configWriter
* @throws LogicException
*/ */
public function __construct(WriterInterface $configWriter) public function __construct(WriterInterface $configWriter)
{ {
parent::__construct(null); parent::__construct();
$this->configWriter = $configWriter; $this->configWriter = $configWriter;
} }
@ -226,7 +228,7 @@ abstract class AbstractInstallCommand extends Command
*/ */
protected function ask($text, $default = null, $allowEmpty = false) protected function ask($text, $default = null, $allowEmpty = false)
{ {
if (isset($default)) { if ($default !== null) {
$text .= ' (defaults to ' . $default . ')'; $text .= ' (defaults to ' . $default . ')';
} }
do { do {