-
Notifications
You must be signed in to change notification settings - Fork 65
Coding guidelines
Olivier Paroz edited this page Jul 27, 2015
·
10 revisions
Make it easier to review
- Keep method cyclomatic complexity below 5.
- Keep methods short, below 20 lines
t('gallery',"This is my very long" +
" string, that I want to split");
t('gallery',"This is my very long string, that I want to split");
PHP uses a short-circuit evaluation technique when looking at conditions
if (conditionA && conditionB)
If conditionA is false, conditionB will never be tested.
- General
- Installation
- Configuration
- OCC commands
- Developers