- 🇬🇧United Kingdom catch
Marking duplicate of 📌 Allow omitting doxygen when type and variable name is enough Active
I am currently working through application of Coder to a substantial fully object-oriented tutorial module (including graphical UML diagrams) for Drupal7, in preparation for moving from the sandbox: https://www.drupal.org/sandbox/webel/2120905 → .
It is taking me many days, the better part of a week, and in general, I can so far see little benefit (the "value add" is not convincing or compelling), although it has helped catch some minor problems. I honestly almost resent it, is has become a very expensive exercise for me, for code that was already in my opinion perfectly adequate in both coding style and documentation (not to mention the fact that it is supplemented with extensive UML diagrams).
I see the point of coding standards and having a tool like Coder (which does its job of applying the rules well enough) , but as far as I am concerned - as one can see from my various recent issue reports for Coder - a number of the rules it is applying, in many cases derived from the official Drupal coding standards and documentation standards, are just plain annoyingly trivial, irrelevant, or verbose without any benefit,
One thing I find particularly inconvenient is to have to repeat documentation for getters and setters both in the method function description and in the @param or @return section. In many cases I would argue that one does not even need the function description if the meaning is clear in context.
The Drupal API documentation and comment standards → currently state:
Every function, constant, class, interface, class member (function, property, constant), and file must be documented, even private class members.
Before my examples, and please without inviting an argument about the pros and cons of Agile, a quote from http://www.agilemodeling.com/faq.htm#HowMuchDocumentation:
2.8 How much documentation do I need to write?
Just enough to get the job done, and that's often far less than you need. Travel as light as possible and take an agile approach to documentation in general.
In the following (and yes I am fully aware that I am departing from the also painfully verbose recommendation that interfaces be suffixed by 'Interface' → ) it is pretty clear what getName and setName do with barely any docs at all:
interface ITag extends ITagManager {
/**
* @return string
*/
public function getName();
/**
* @param string $name
*
* @return ITag
*/
public function setName($name);
Gee I wonder what getName and setName do, or what $name is ?
And I wonder what is returned by the setter, is it 'this' ITag, or is it another ITag from a distant galaxy (after all, I might not be applying the convention of returning 'this') ?
Let's make it much clearer with more docs, instead of relying on the getter/setter patterns and conventions, that will add some enormous benefit and use my unpaid time well.
interface ITag extends ITagManager {
/**
* The name.
*
* @return string
*/
public function getName();
/**
* Sets the name.
*
* @param string $name
*
* @return ITag
* This.
*/
public function setName($name);
Is it clearer if I add 'of the tag', for those who did not notice the name of the Interface, ITag ?
interface ITag extends ITagManager {
/**
* The name of the tag.
*
* @return string
*/
public function getName();
/**
* Sets the name of the tag.
*
* @param string $name
*
* @return ITag
* This.
*/
public function setName($name);
Wow, that cleared it up for me.
What about that @return in the getter and that @param in the setter, I mean so far it leaves me wondering exactly what is being set and returned. After all, it only says the getter called getName() returns a 'string' and the setter accepts a 'string' called $name, it might not be a "name", it could be any string, it could be .. a type of marshmallow .. or an alien spaceship's call sign. Let's "fix" it:
interface ITag extends ITagManager {
/**
* The name of the tag.
*
* @return string
* The name of the tag.
*/
public function getName();
/**
* Sets the name of the tag.
*
* @param string $name
* The name of the tag to set.
*
* @return ITag
* This.
*/
public function setName($name);
And now Coder is happy, for a while, not least because I used full stops above and removed excess whitespace my IDE introduced, too, and I did not use any (one or tow word) inline comments after code statements, and I did not use any inline comments to comment out code that does not start with a Capital (does code ever), or leave spaces after inline comments applied to code or brief tagging words like //TODO and //DEBUG (sorry, I mean "// TODO. " or at least '// DEBUG!' ), all very important things that add .. almost no value at all.
But I'm not happy, no no. I am just plain annoyed at having some more time of my life stolen (that nobody is ever going to give me back) doing something pointless of absolutely no additional benefit to anybody who has an ounce of common sense.
Proposal:
1. Please relax the rule on strict documentation of every part of every method, at least for OO getters and setters.
2. Tune Coder to detect getters and setters and not be strict about trivially obvious documentation.
As far as I am concerned (and nobody can claim I haven't taken it seriously, after all, I have devoted many days to it I would rather have used writing new code) the entire Coder and Drupal coding and documentation standards matter has gotten completely out of hand, and if it annoys me this much (a very experienced OO developer), it is going to turn a lot of other people off, too, and it will especially turn them off OO.
Closed: duplicate
Coding Standards
It involves compliance with, or the content of coding standards. Requires broad community agreement.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Marking duplicate of 📌 Allow omitting doxygen when type and variable name is enough Active