-
Notifications
You must be signed in to change notification settings - Fork 768
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
Small error with PHPDoc: long[] should be int[]? #261
Comments
Hi JC, Thanks for reporting. As it's a Cheers, |
To clarify, from the library aspect, it works as intended. |
Just being curious. Can you clarify the purpose of the PHPDoc for the library? I see that on AdWordsNormalizer, it uses the doc block for instantiating objects, is this related? As far as I understand PHPDoc is mainly used to aid IDEs in interpreting code. And in this case long[] is not a valid PHP variable type or a class in the library, I would think int[] should be used. |
Hi @komirad AdWordsNormalizer is not related to how the classes under
Ah, I missed this point. Then your argument is valid that we should change the PHPDoc to generate Thanks again. Best, |
This is fixed in v28.0.0. |
In FeedItemAttributeValue, some values are defined as
long[]
when they should beint[]
. For example, line 179.It probably doesn't affect functionality but my IDE is displaying a warning.
The text was updated successfully, but these errors were encountered: