PHP 8.2 | Detect DNF types in all type declaration related sniffs#1714
Merged
PHP 8.2 | Detect DNF types in all type declaration related sniffs#1714
Conversation
Up the minimum supported PHPCS version to 3.10.0 and the minimum supported PHPCSUtils version to 1.0.12 to benefit from improved PHP 8.2 syntax support (Disjunctive Normal Types). Includes updating references to the PHPCS version whenever relevant throughout the codebase.
…ypes > Type System Improvements > > It is now possible to combine intersection and union types. The type needs to be written in DNF. This updates the sniff to detect DNF types. Includes unit tests. Refs: * https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system * https://wiki.php.net/rfc/dnf_types * php/php-src 8725 * php/php-src@f905590
…types > Type System Improvements > > It is now possible to combine intersection and union types. The type needs to be written in DNF. This updates the sniff to detect DNF types. Includes unit tests. Refs: * https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system * https://wiki.php.net/rfc/dnf_types * php/php-src 8725 * php/php-src@f905590
> Type System Improvements > > It is now possible to combine intersection and union types. The type needs to be written in DNF. This updates the sniff to detect DNF types. Includes unit tests. Refs: * https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system * https://wiki.php.net/rfc/dnf_types * php/php-src 8725 * php/php-src@f905590
18 tasks
This was referenced May 24, 2024
wimg
approved these changes
Jun 7, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Composer: raise the minimum supported PHPCS + PHPCSUtils versions
Up the minimum supported PHPCS version to 3.10.0 and the minimum supported PHPCSUtils version to 1.0.12 to benefit from improved PHP 8.2 syntax support (Disjunctive Normal Types).
Includes updating references to the PHPCS version whenever relevant throughout the codebase.
PHP 8.2 | FunctionDeclarations/NewParamTypeDeclarations: detect DNF types
This updates the sniff to detect DNF types.
Includes unit tests.
Refs:
PHP 8.2 | FunctionDeclarations/NewReturnTypeDeclarations: detect DNF types
This updates the sniff to detect DNF types.
Includes unit tests.
Refs:
PHP 8.2 | Classes/NewTypedProperties: detect DNF types
This updates the sniff to detect DNF types.
Includes unit tests.
Refs:
Related to #1348