Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[Validator] Ensure numeric subpaths do not cause errors on PHP 7.4 #34097

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

Merged
merged 1 commit into from
Oct 25, 2019

Conversation

alexpott
Copy link
Contributor

@alexpott alexpott commented Oct 24, 2019

Q A
Branch? 3.4
Bug fix? yes
New feature? no
Deprecations? no
Tickets Fix #...
License MIT
Doc PR symfony/symfony-docs#...

Drupal is testing on PHP7.4 and hitting a problem with the line if ('[' === $subPath[0]) { because $subPath is not a string. We're already doing string casting in the method so we could do it once and be done. Note this is not a problem on the master branch / SF5 because of primitive typehinting.

Without this fix on PHP7.4 you see errors like...

1) Symfony\Component\Validator\Tests\Util\PropertyPathTest::testAppend with data set #5 ('0', 1, '0.1', 'Numeric subpaths do not cause...rrors.')
Trying to access array offset on value of type int

@nicolas-grekas nicolas-grekas added this to the 3.4 milestone Oct 25, 2019
@nicolas-grekas nicolas-grekas changed the title Php74 property path [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4 Oct 25, 2019
@Tobion Tobion force-pushed the php74-property-path branch from 7e92778 to 6244a1e Compare October 25, 2019 13:06
@Tobion
Copy link
Contributor

Tobion commented Oct 25, 2019

Thank you @alexpott.

Tobion added a commit that referenced this pull request Oct 25, 2019
…on PHP 7.4 (alexpott)

This PR was squashed before being merged into the 3.4 branch (closes #34097).

Discussion
----------

[Validator] Ensure numeric subpaths do not cause errors on PHP 7.4

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tickets       | Fix #... <!-- prefix each issue number with "Fix #", if any -->
| License       | MIT
| Doc PR        | symfony/symfony-docs#... <!-- required for new features -->

Drupal is testing on PHP7.4 and hitting a problem with the line `if ('[' === $subPath[0]) {` because `$subPath` is not a string. We're already doing string casting in the method so we could do it once and be done. Note this is not a problem on the master branch / SF5 because of primitive typehinting.

Without this fix on PHP7.4 you see errors like...
```
1) Symfony\Component\Validator\Tests\Util\PropertyPathTest::testAppend with data set #5 ('0', 1, '0.1', 'Numeric subpaths do not cause...rrors.')
Trying to access array offset on value of type int
```

Commits
-------

6244a1e [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4
@Tobion Tobion merged commit 6244a1e into symfony:3.4 Oct 25, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants