diff --git a/Helper/Table.php b/Helper/Table.php index 928589eb8..4bf3ed396 100644 --- a/Helper/Table.php +++ b/Helper/Table.php @@ -520,7 +520,7 @@ private function renderCell(array $row, int $column, string $cellFormat): string if ($isNotStyledByTag) { $cellFormat = $cell->getStyle()->getCellFormat(); if (!\is_string($cellFormat)) { - $tag = http_build_query($cell->getStyle()->getTagOptions(), null, ';'); + $tag = http_build_query($cell->getStyle()->getTagOptions(), '', ';'); $cellFormat = '<'.$tag.'>%s'; } diff --git a/Input/InputOption.php b/Input/InputOption.php index 6d10e696e..04fd788a9 100644 --- a/Input/InputOption.php +++ b/Input/InputOption.php @@ -42,7 +42,7 @@ class InputOption public const VALUE_IS_ARRAY = 8; /** - * The option accepts multiple values (e.g. --dir=/foo --dir=/bar). + * The option may have either positive or negative value (e.g. --ansi or --no-ansi). */ public const VALUE_NEGATABLE = 16; diff --git a/README.md b/README.md index 3e2fc605e..c89b4a1a2 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ interfaces. Resources --------- - * [Documentation](https://symfony.com/doc/current/components/console.html) - * [Contributing](https://symfony.com/doc/current/contributing/index.html) - * [Report issues](https://github.com/symfony/symfony/issues) and - [send Pull Requests](https://github.com/symfony/symfony/pulls) - in the [main Symfony repository](https://github.com/symfony/symfony) + * [Documentation](https://symfony.com/doc/current/components/console.html) + * [Contributing](https://symfony.com/doc/current/contributing/index.html) + * [Report issues](https://github.com/symfony/symfony/issues) and + [send Pull Requests](https://github.com/symfony/symfony/pulls) + in the [main Symfony repository](https://github.com/symfony/symfony) Credits -------