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

IBX-4929: Fix property-read usage #373

Draft
wants to merge 10 commits into
base: 4.6
Choose a base branch
from
Draft

Conversation

adriendupuis
Copy link
Contributor

@adriendupuis adriendupuis commented May 17, 2024

🎫 Issue IBX-4929

@property* tags are used for magic properties.
https://docs.phpdoc.org/guide/references/phpdoc/tags/property.html

@property* tags duplicate property definitions in the output documentation when used to re-declare real properties.

This is due (or partially due) to a "bug" in phpDocumentor.

  1. A property is duplicated when both declared as protected and declared as "magically" publicly readable thank to __get. For example, URLAlias have two $alwaysAvailable properties:
    • one is "magic" and read-only,
    • one is "real" and protected.
  2. A property is duplicated when inheriting a magic property and trying to override it. For example, RoleDraft has two $policies properties:
    • one is typed PolicyDraft which is correct.
    • one is typed Policy, inherited from Role, which should have been overridden, and shouldn't appear.

@Property* tags are used for magic properties.
https://docs.phpdoc.org/guide/references/phpdoc/tags/property.html

@Property* tags duplicate property definitions in the output documentation when used to re-declare real properties.
@Property* tags are used for magic properties.
https://docs.phpdoc.org/guide/references/phpdoc/tags/property.html

@Property* tags duplicate property definitions in the output documentation when used to re-declare real properties.
@Property* tags are used for magic properties.
https://docs.phpdoc.org/guide/references/phpdoc/tags/property.html

@Property* tags duplicate property definitions in the output documentation when used to re-declare real properties.
@Property* tags are used for magic properties.
https://docs.phpdoc.org/guide/references/phpdoc/tags/property.html

@Property* tags duplicate property definitions in the output documentation when used to re-declare real properties.
composer install;
/opt/homebrew/Cellar/php@8.1/8.1.28/bin/php -d memory_limit=-1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots;
@adriendupuis adriendupuis changed the title Fix property-read usage IBX-4929: Fix property-read usage May 21, 2024
Reorder declarations to avoid new lines from php-cs-fixer
Copy link

sonarcloud bot commented May 21, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@adamwojs
Copy link
Member

@adriendupuis rebase is needed here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
5 participants