From b6e46d4262a7d83b416df66f0cdecbe7debd44bc Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 14 Jan 2025 10:56:38 +0100 Subject: [PATCH] Minor documentation fixes --- .github/workflows/integrationtest.yml | 2 +- README.md | 2 +- tests/IntegrationTest/BaseLineTest.php | 2 +- tests/IntegrationTest/RegisterExternalStandardsTest.php | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integrationtest.yml b/.github/workflows/integrationtest.yml index 66cb227a..74fee453 100644 --- a/.github/workflows/integrationtest.yml +++ b/.github/workflows/integrationtest.yml @@ -66,7 +66,7 @@ jobs: include: # Composer 2.3 drops support for PHP < 7.2, so for PHP 5.4 to 7.1, `v2` will install - # Composer 2.2, for PHP 7.2 and up, `v2` will install Composer 2.3. + # Composer 2.2, for PHP 7.2 and up, `v2` will install Composer >= 2.3. # These builds make sure the Composer 2.2 LTS version is 100% supported for PHP 7.2-8.3. # Note: Composer 2.2 is not compatible with PHP 8.4 and it is unlikely that it will be # made compatible with PHP 8.4. diff --git a/README.md b/README.md index 7a0f898e..d76441aa 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ Thank you for being involved! :heart_eyes: The original idea and setup of this repository is by [Franck Nijhof][frenck], employee @ Dealerdirect. -For a full list of all author and/or contributors, check [the contributors page][contributors]. +For a full list of all authors and/or contributors, check [the contributors page][contributors]. ## Funding diff --git a/tests/IntegrationTest/BaseLineTest.php b/tests/IntegrationTest/BaseLineTest.php index 3b57aaa6..16df4479 100644 --- a/tests/IntegrationTest/BaseLineTest.php +++ b/tests/IntegrationTest/BaseLineTest.php @@ -156,7 +156,7 @@ public function testBaseLineLocal($phpcsVersion, $expectedStnds) * get displayed may differ depending on the machine/OS on which the tests get run. * With that in mind, the verification that the PHPCS native standards are the only recognized standards * is done using a regex instead of an exact match. - * Also see: https://github.com/squizlabs/PHP_CodeSniffer/pull/3539 + * Also see: https://github.com/squizlabs/PHP_CodeSniffer/pull/3539 which was merged in PHPCS 3.7.0. * * @return array */ diff --git a/tests/IntegrationTest/RegisterExternalStandardsTest.php b/tests/IntegrationTest/RegisterExternalStandardsTest.php index 3604c886..2d5f7266 100644 --- a/tests/IntegrationTest/RegisterExternalStandardsTest.php +++ b/tests/IntegrationTest/RegisterExternalStandardsTest.php @@ -112,7 +112,7 @@ public function testRegisterOneStandardGlobal($phpcsVersion) static::$tempGlobalPath ); - // Verify that PHPCS can with the external standard set as the standard. + // Verify that PHPCS can run with the external standard set as the standard. $phpcsCommand = '"vendor/bin/phpcs" --standard=DummySubDir -e'; $phpcsResult = $this->executeCliCommand($phpcsCommand, static::$tempGlobalPath); @@ -181,7 +181,7 @@ public function testRegisterOneStandardLocal($phpcsVersion) static::$tempLocalPath ); - // Verify that PHPCS can with the external standard set as the standard. + // Verify that PHPCS can run with the external standard set as the standard. $phpcsCommand = '"vendor/bin/phpcs" --standard=DummySubDir -e'; $phpcsResult = $this->executeCliCommand($phpcsCommand, static::$tempLocalPath);