I was just watching those video lesson at Laracasts , where there is an explanation that teaches you to avoid accumulating too much code in a method, separating it into several methods with specific responsibilities and thus reducing the size of the indentation - at least that is what I understood, correct me if I am wrong.
I also noticed that the same "teaching" exists in this link , which seems to me to be the Microsoft blog.
What is curious is that, in these videos of Laracast classes, the subjects usually deal with the PHP framework called Laravel. I do not know if it's just a coincidence, but I've seen that link above is from Microsoft, and Laravel's creator, Taylor Otwell, said in a video lesson that before programming in PHP he was programming in ASP - which is Microsoft .
This last placement may seem irrelevant, but it is important to my question:
Is this a specific standard for ASP development (or anything else from Microsoft, such as C # and etc.), or is this "One Level of Indentation" really a design pattern or a coding standard?
Note : I do not know much about Microsoft's "stuff", so please forgive me if I said anything silly.