Skip to content
ppetermann edited this page Apr 20, 2011 · 5 revisions

Coding Standards

PHP Code Demarcation

<?php

// no closing tag here.

Short tags are not allowed, the closing must always be omitted (no ?>)

Indentation

  • 1 tab = 4 spaces
  • 2 tabs = 8 spaces
  • 3 tabs = 12 spaces and so forth..

Always use spaces, not tabs.