Files
yii2/docs/code_style.md
Alexander Makarov bfc0cbb648 - Changed docs format to markdown (.md extension).
- Added changelog.md, license.md, readme.md.
- Added code_style.md.
- Added class diagrams.
2011-11-12 17:07:56 +04:00

432 B

Yii2 core code style

Brackets

class MyClass
{
	public function myClassMethod()
	{
		if($x)
		{
			// do it
		}
		else
		{
			// some code
		}
	}
}

Proposals

Use type hinting like

public function __construct(CDbConnection $connection)
{
	$this->connection = $connection;
}

instead of

public function __construct($connection)
{
	$this->connection = $connection;
}