Skip to content

Commit b6e46d4

Browse files
committed
Minor documentation fixes
1 parent c4a2452 commit b6e46d4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/integrationtest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
include:
6868
# Composer 2.3 drops support for PHP < 7.2, so for PHP 5.4 to 7.1, `v2` will install
69-
# Composer 2.2, for PHP 7.2 and up, `v2` will install Composer 2.3.
69+
# Composer 2.2, for PHP 7.2 and up, `v2` will install Composer >= 2.3.
7070
# These builds make sure the Composer 2.2 LTS version is 100% supported for PHP 7.2-8.3.
7171
# Note: Composer 2.2 is not compatible with PHP 8.4 and it is unlikely that it will be
7272
# made compatible with PHP 8.4.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Thank you for being involved! :heart_eyes:
222222
223223
The original idea and setup of this repository is by [Franck Nijhof][frenck], employee @ Dealerdirect.
224224
225-
For a full list of all author and/or contributors, check [the contributors page][contributors].
225+
For a full list of all authors and/or contributors, check [the contributors page][contributors].
226226
227227
## Funding
228228

tests/IntegrationTest/BaseLineTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public function testBaseLineLocal($phpcsVersion, $expectedStnds)
156156
* get displayed may differ depending on the machine/OS on which the tests get run.
157157
* With that in mind, the verification that the PHPCS native standards are the only recognized standards
158158
* is done using a regex instead of an exact match.
159-
* Also see: https://github.com/squizlabs/PHP_CodeSniffer/pull/3539
159+
* Also see: https://github.com/squizlabs/PHP_CodeSniffer/pull/3539 which was merged in PHPCS 3.7.0.
160160
*
161161
* @return array
162162
*/

tests/IntegrationTest/RegisterExternalStandardsTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function testRegisterOneStandardGlobal($phpcsVersion)
112112
static::$tempGlobalPath
113113
);
114114

115-
// Verify that PHPCS can with the external standard set as the standard.
115+
// Verify that PHPCS can run with the external standard set as the standard.
116116
$phpcsCommand = '"vendor/bin/phpcs" --standard=DummySubDir -e';
117117
$phpcsResult = $this->executeCliCommand($phpcsCommand, static::$tempGlobalPath);
118118

@@ -181,7 +181,7 @@ public function testRegisterOneStandardLocal($phpcsVersion)
181181
static::$tempLocalPath
182182
);
183183

184-
// Verify that PHPCS can with the external standard set as the standard.
184+
// Verify that PHPCS can run with the external standard set as the standard.
185185
$phpcsCommand = '"vendor/bin/phpcs" --standard=DummySubDir -e';
186186
$phpcsResult = $this->executeCliCommand($phpcsCommand, static::$tempLocalPath);
187187

0 commit comments

Comments
 (0)