Fix quotes in exception messages

Fix quotes in exception messages

АвторFabien Potencier
КоммитерFabien Potencier
5 лет назад
Файлов изменено: 1
+1
–1
0085aec
Родители 2a8f012 5.0
Command/Command.php
@@ -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 позволяет выбрать отдельные коммиты из одной ветки и применить их к другой.