mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-10 09:17:39 +01:00
- Added changelog.md, license.md, readme.md. - Added code_style.md. - Added class diagrams.
432 B
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;
}