Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
72a84435
Commit
72a84435
authored
Jan 16, 2010
by
oilyflutesalad
Browse files
just fixed a couple minor typos
parent
136205ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
CODING_NOTES.php.txt
View file @
72a84435
...
...
@@ -43,7 +43,7 @@ To block out single lines use // and all // are assumed to be redundant test cod
// print_r($foo);
For in
c
line comment use //** and //* eg
For inline comment use //** and //* eg
//** Decide what do do
switch($decide){
...
...
@@ -66,7 +66,7 @@ switch($decide){
Do not use the phpdoc on every function, eg
/**
* Login a
n
user
* Login a user
* @param string user username
* @param string password of user
*/
...
...
@@ -75,7 +75,7 @@ function login($user, $pass){
.......
}
<<
as this function explains its self, the followin
f
clean code will suffice
as this function explains its self, the followin
g
clean code will suffice
>>
function login($user, $pass){
.......
...
...
@@ -84,7 +84,7 @@ function login($user, $pass){
If you do need to explain a function then put un the summary syntax eg
/** Pass an array of values where third param is bar
* $foo['bar'] = 1; // allow a
n
user
* $foo['bar'] = 1; // allow a user
* $foo['bar'] = 2; // destroy user
* $foo['bar'] = -1; // recreate
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment