My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
Rules  
Coding Style Rules implemented (not yet) in indentphp
Updated Apr 20, 2007 by mberth...@gmail.com

Introduction

This page lists the coding style rules that indentphp implements (not yet).

Curly Braces

Curly braces on a single line, on the same indent level as the previous line. Example:

class FooClass
{
    function __construct()
    {
        $this->baz = 'bar';
    }
}

Sign in to add a comment
Powered by Google Project Hosting