Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor documentation fixes #231

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integrationtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/IntegrationTest/BaseLineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions tests/IntegrationTest/RegisterExternalStandardsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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);

Expand Down
Loading