Skip to content

Commit 0e1bf78

Browse files
authored
Merge pull request #684 from PHPCSStandards/feature/changelog-fix-up-typos
Changelog: fix up some typos
2 parents 2c167d9 + 654cfd7 commit 0e1bf78

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@ This projects adheres to [Keep a CHANGELOG](https://keepachangelog.com/) and use
1010
_Nothing yet._
1111

1212

13-
## [1.1.0] - 2025-06-11
13+
## [1.1.0] - 2025-06-12
1414

1515
### Added
1616

17-
Compatibility with the new PHP_CodeSniffer `4.x` branch in anticipation of the PHP_CodeSniffer 4.0 release. [#674], [#679]
17+
Compatibility with the new PHP_CodeSniffer `4.x` branch in anticipation of the PHP_CodeSniffer 4.0 release. [#674], [#679]
1818
PHPCSUtils should now be fully compatible with PHP_CodeSniffer 4.0 (again). If you still find an issue, please report it.
1919

2020
#### PHPCS BackCompat
2121

2222
* `BCFile::findExtendedClassName()`: sync with PHPCS 4.0.0 - support for namespace relative names when used as the _extended_ parent class name. [#674]
2323
* `BCFile::findImplementedInterfaceNames()`: sync with PHPCS 4.0.0 - support for namespace relative names when used in _implemented_ interface names. [#674]
2424
* `BCFile::getMemberProperties()`: sync with PHPCS 3.12.0 - support for PHP 8.4 final properties. Thanks [@DanielEScherzer]! [#646]
25-
* `BCFile::getMemberProperties()`: sync with PHPCS 3.13.1 - support for PHP 8.4 asymmetric visibility.[#677]
25+
* `BCFile::getMemberProperties()`: sync with PHPCS 3.13.1 - support for PHP 8.4 asymmetric visibility. [#677]
2626
* `BCFile::getMemberProperties()`: sync with PHPCS 4.0.0. [#674]
2727
- Add support for PHP 8.4 properties in interfaces.
2828
- Removed parse error warning.
29-
* `BCFile::getMethodParameters()`: sync with PHPCS 3.13.1 - support for PHP 8.4 asymmetric visibility.[#677]
29+
* `BCFile::getMethodParameters()`: sync with PHPCS 3.13.1 - support for PHP 8.4 asymmetric visibility. [#677]
3030
* `BCFile::findStartOfStatement()`: sync with PHPCS 3.12.1 - support for `goto` as a `switch` - `case` terminating statement. [#661]
3131
* `BCTokens::nameTokens()` as introduced in PHPCS 4.0.0. [#674]
3232
The same token array previously already existed in PHPCSUtils as `Collections::nameTokens()`.
3333
* `BCTokens::functionNameTokens()`: sync with PHPCS 4.0.0 - added the `T_ANON_CLASS` token. [#674]
3434
* `BCTokens::parenthesisOpeners()`: sync with PHPCS 4.0.0 - added the `T_USE`, `T_ISSET`, `T_UNSET`, `T_EMPTY`, `T_EVAL` and `T_EXIT` tokens. [#674]
3535
Note: While `T_USE`, `T_ISSET`, `T_UNSET`, `T_EMPTY`, `T_EVAL` and `T_EXIT` will be included in the return value for this method,
3636
the associated parentheses will not have the `'parenthesis_owner'` index set unless PHPCS 4.0.0 is used.
37-
Use the [`Parentheses::getOwner()`][`Parentheses`] or the [`Parentheses::hasOwner()`[`Parentheses`] methods if you need to check
37+
Use the [`Parentheses::getOwner()`][`Parentheses`] or the [`Parentheses::hasOwner()`][`Parentheses`] methods if you need to check
3838
whether any of these tokens are a parentheses owner. The methods in the `Parentheses` class are PHPCS cross-version compatible.
3939

4040
#### TestUtils
@@ -71,9 +71,9 @@ PHPCSUtils should now be fully compatible with PHP_CodeSniffer 4.0 (again). If y
7171
These methods will each return an array with the name of the constant/case/property/method as the key and the typical stack pointer needed for further processing.
7272
The retrieval of this information is highly optimized for performance. If a sniff needs to search for a named constant/enum case/property/method in an OO structure, in most cases, these methods should be the recommended way for finding the declaration, instead of the sniff attempting to do this itself.
7373
Mind: the return value of the `getDeclaredProperties()` method includes constructor promoted properties. Passing the stack pointer of constructor promoted properties onto a call to the `Variables::getMemberProperties()` method, however, is currently not supported.
74-
* `FunctionDeclarations::getParameters()`: support for PHP 8.4 asymmetric visibility.[#677]
74+
* `FunctionDeclarations::getParameters()`: support for PHP 8.4 asymmetric visibility. [#677]
7575
* `Variables::getMemberProperties()`: support for PHP 8.4 final properties. Thanks [@DanielEScherzer]! [#646]
76-
* `Variables::getMemberProperties()`: support for PHP 8.4 asymmetric visibility.[#677]
76+
* `Variables::getMemberProperties()`: support for PHP 8.4 asymmetric visibility. [#677]
7777

7878
### Changed
7979

0 commit comments

Comments
 (0)