Fix quotes in exception messages
Автор
Fabien Potencier

Коммитер
Fabien Potencier
5 лет назад 
Файлов изменено: 1
+1
–1
0085aec
Command/Command.php
+1
–1
@@ -255,7 +255,7 @@ | ||
$statusCode = $this->execute($input, $output); | ||
if (!\is_int($statusCode)) { | ||
throw new \TypeError(sprintf('Return value of "%s::execute()" must be of the type int, %s returned.', static::class, \gettype($statusCode))); | ||
throw new \TypeError(sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, \gettype($statusCode))); | ||
} | ||
} | ||
Cherry-pick
Команда cherry-pick позволяет выбрать отдельные коммиты из одной ветки и применить их к другой.