Table of Contents

General

Indentation

Example function

/**
 * Function description.
 * 
 * @param string $foo A variable.
 * @return string
 */
function fooBar($foo)
{
    if ($foo === 'bar')
    {
        $out[] = $foo;
    }
    else
    {
        $out[] = 'baz';
    }
 
    return implode('', $out);
}