Skip to content

Commit

Permalink
Fix bootstrap call in PHP files and adjust README indentation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
SmetDenis committed Apr 1, 2024
1 parent 85bf1e6 commit c907e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ReadmeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c907e32

Please sign in to comment.