Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 537 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 537 Bytes

SEST

Suso-Intern website for the Heinrich-Suso-Gymnasium Konstanz

Code Style

  • Add PhPDoc to explain your code
  • Use 4 spaces to indent
  • Keep indents on empty lines
  • Curly brackets after statements should always be in the same line of code
  • Don't do one-liner / don't keep them in a single line. Add newlines... (e.g. if(abc){foo();} )
  • Keep curly braces after every statement, even if it's only one line (not if(abc)foo(); but if(abc){foo();})
  • Do your code clean, modular and dynamic. Should be understandable though.