From c907e32657e6a95e711da340fd8ea3df1b6f5eb5 Mon Sep 17 00:00:00 2001 From: SmetDenis Date: Mon, 1 Apr 2024 22:42:45 +0400 Subject: [PATCH] Fix bootstrap call in PHP files and adjust README indentation This commit corrects the bootstrap function call under the parallel extension in both "tests/autoload.php" and "csv-blueprint.php" files to ensure proper functioning in PHP applications. Additionally, it improves the README file's readability by fixing the indentations in a section explaining the usage of "csv.header" in two different cases. --- tests/ReadmeTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ReadmeTest.php b/tests/ReadmeTest.php index 3439406e..76dd2eab 100644 --- a/tests/ReadmeTest.php +++ b/tests/ReadmeTest.php @@ -30,8 +30,8 @@ final class ReadmeTest extends TestCase '* Check that each row matches the number of columns.', '* With `strict_column_order` rule, you can check that the columns are in the correct order.', '* With `allow_extra_columns` rule, you can check that there are no extra columns in the CSV file.', - ' * If `csv.header: true`. Schema contains an unknown column `name` that is not found in the CSV file.', - ' * If `csv.header: false`. Compare the number of columns in the schema and the CSV file.', + ' * If `csv.header: true`. Schema contains an unknown column `name` that is not found in the CSV file.', + ' * If `csv.header: false`. Compare the number of columns in the schema and the CSV file.', ]; public function testCreateCsvHelp(): void