-
Notifications
You must be signed in to change notification settings - Fork 0
Function and Method Calls
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- When some function call exceeds the line length, use break-line
- Put arguments in the next line when function exceed the line length
✅ Do
big_function_name_that_almost_exceed_the_line_length_and_has_a_big_name(
'argument1', 'argument2', 'argument3',
)
❌ Don't
big_function_name_that_almost_exceed_the_line_length_and_has_a_big_name(
'argument1',
'argument2',
'argument3',
)
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources