Replies: 1 comment 2 replies
-
In my opinion, I'd remove it from the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For @neclimdul, @ryanwinchester or anyone else who cares to comment:
Is there any real value in continuing to populate the "generated:" line that we currently inject into the class level docblocks when the class separator generates a new set of class files? It seems to me that since we are using revision control, we can pretty easily look, if needed, to see when these files were generated. I think the real question anyone might have while looking at a file is "which version of the toolkit was this generated against?" and that question isn't really answered by the generated timestamp anyway. For this information, a user could look at the
$generated_from_endpoint
in theNetSuiteService
class.The only thing I see the generated datetime line doing is making it damn near impossible to evaluate a new build's differences and quickly see which class files were actually changed. Every time we build a new version of the toolkit, we end up with nearly 2000 changed files just for these timestamps, when in practice often only a dozen or so files might have any real changes.
Unless someone can point out that I'm missing some valuable reason to keep the line there, I'm planning to make an update prior to the
v2021.1.0
that will remove this line from the files. Bueller?Beta Was this translation helpful? Give feedback.
All reactions