Comments missing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nicola883
    Junior Member
    • Dec 2017
    • 15

    Comments missing

    Hi.
    It seems that there are no comments in all the code in GitHub. Is there a reason for that? Is there a way to have them?

    Thank you.
  • emillod
    Active Community Member
    • Apr 2017
    • 1405

    #2
    For what you need these comments?

    Comment

    • yuri
      Member
      • Mar 2014
      • 8443

      #3
      Personally I don't need comments in most cases. For me it's easier to read code. If methods and variables are named properly, methods are short, it's not a problem at all.

      If I had commended all my code it would have take 2x time longer to write EspoCRM. I'm not exaggerating.

      If you are talking about documentation commenting, in most cases those are just a duplication of method names (the same text but with white spaces). PHP supports argument type and return type hinting, no need to copy the same information to comments anymore. It's my personal view.

      There are situations where comments are needed though.
      Last edited by yuri; 05-08-2020, 01:09 PM.
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      • nicola883
        Junior Member
        • Dec 2017
        • 15

        #4
        Thank you for your answers.
        Comments can help to use methods without the need to read the code. Also, they can be useful when you code. Often, I write comments before implementing the method: coding it is just a matter of realizing what the comment wants.
        Moreover, in the first approach with a big project such as espocrm, it could make more accessible the engagement of new collaborators.
        However, I agree with yurikuzn: names of methods, classes, variables are very well defined in espo that they could substitute the comments.

        Comment

        • tothewine
          Active Community Member
          • Jan 2018
          • 373

          #5
          Originally posted by yurikuzn
          There are situations where comments are needed though.
          I believe doc blocks should be added to code that is not trivial or when it is not possible to detect the type of some variables. For example all those methods that use string manipulation/reflections to create method names. It is also important to document parameters and what they do: if a function accepts parameters in the $params argument they should be declared in a doc block. But since the current dependency injection system is a type-hinting hell those documentation blocks would probably never show in a ide anyway.
          Last edited by tothewine; 06-15-2020, 02:57 PM.

          Comment

          • yuri
            Member
            • Mar 2014
            • 8443

            #6
            Dependency injection approach will be totally rewritten in 6.0. A lot of classes will be changed. Backward compatibility will be ensured as much as possible. Then I plan to start documenting API. The main parts for the beginning.
            If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

            Comment

            Working...