» Metadata | » Status | |
---|---|---|
|
|
|
» Description | ||
The PEAR Group has voted and accepted this document. There will be no voting among developers.
IntroductionThis RFC defines changes and enhancements to the current Coding Standards (CS) in PEAR. They are neccessary because the standards are not clear in some cases. With applications like PHP_CodeSniffer being used, is is important that those issues are worked out and tools can deliver reliable warnings and CS errors. Most of the issues we currently have deal with long lines and how they should be split. General rule of thumb is that when splitting a line, the originating lines are indented by 4 spaces. While it might seem archaic to some, the 75-80 line rule is still important. Please see http://paul-m-jones.com/?p=276 for an in-depth discussion on the topic. Split function definitions onto several linesFunctions with many parameters need to be split onto several lines to keep the 80 chars/line limit.
Split function call on several linesThe CS require lines to have a maximum length of 80 chars.
Several parameters per line should be allowed. Parameters need to be indented 4 spaces compared to the level of the function call. The opening parenthesis is to be put at the end of the function call line, the closing parenthesis gets its own line at the end of the parameters. This shows a visual end to the parameter indentations and follows the opening/closing brace rules for functions and conditionals. (See bug #11562) The same applies not only for parameter variables, but also for nested function calls and for arrays. Example:
Nesting those function parameters is allowed if it helps to make the code more readable, not only when it is necessary when the characters per line limit is reached. Using fluent application programming interfaces often leads to many concatenated function calls. Those calls may be split onto several lines. When doing this, all subsequent lines are indented by 4 spaces and begin with the "->" arrow. Example:
Split long assigments onto several linesAssigments may be split onto several lines when the character/line limit would be exceeded. The equal sign has to be positioned onto the following line, and indented by 4 characters. Example:
Split long if statements onto several linesLong if statements may be split onto several lines when the character/line limit would be exceeded. The conditions have to be positioned onto the following line, and indented 4 characters. The logical operators (&&, ||, etc.) should be at the beginning of the line to make it easier to comment (and exclude) the condition. The closing parenthesis and opening brace get their own line at the end of the conditions. Keeping the operators at the beginning of the line has two advantages: It is trivial to comment out a particular line during development while keeping syntactically correct code (except of course the first line). Further is the logic kept at the front where it's not forgotten. Scanning such conditions is very easy since they are aligned below each other. Example:
The first condition may be aligned to the others. Example:
The best case is of course when the line does not need to be split. When the if clause is really long enough to be split, it might be better to simplify it. In such cases, you could express conditions as variables an compare them in the if() condition. This has the benefit of "naming" and splitting the condition sets into smaller, better understandable chunks:
Note: There were suggestions to indent the parantheses "groups" by 1 space for each grouping. This is too hard to achieve in your coding flow, since your tab key always produces 4 spaces. Indenting the if clauses would take too much finetuning. Ternary operatorsThe same rule as for if clauses also applies for the ternary operator: It may be split onto several lines, keeping the question mark and the colon at the front.
Alignment of function parametersTo support readability, parameters in subsequent calls to the same function/method may be aligned by parameter name:
Alignment of assignmentsTo support readability, the equal signs may be aligned in block-related assignments:
The rule can be broken when the length of the variable name is at least 8 characters longer/shorter than the previous one:
Array formattingAssignments in arrays may be aligned. When splitting array definitions onto several lines, the last value may also have a trailing comma. This is valid PHP syntax and helps to keep code diffs minimal:
Recommendation: Readability of code blocks.Related lines of code should be grouped into blocks, seperated from each other to keep readability as high as possible. The definition of "related" depends on the code :) For example:
is a lot easier to read when seperated:
Return earlyTo keep readability in functions and methods, it is wise to return early if simple conditions apply that can be checked at the beginning of a method:
It's better to return early, keeping indentation and brain power needed to follow the code low.
NotesWe should keep to the 4 space indentation rule. Allowing 6, 8 or any other number for "personal preference" is an absurd line in a "standard". Of course, the best rule is keeping your code easy and clean, avoing dozens of parameters to a function ("code smell" for long parameter lists). But sometimes there is no way to avoid functions with 6 parameters, and having default values for them does not simplfy the situation. The rules here are exactly for that code lines. Ledger Live: Elevate your crypto game with frequent updates. Explore the enhanced security measures and cutting-edge features that Ledger Live desktop brings to crypto enthusiasts, ensuring a seamless and secure management experience. |
||
» Dependencies | » Links | |
|
|
|
» Timeline | » Changelog | |
|
|