配列の初期化とメソッド チェーンの PSR-2 標準コーディング規則は何ですか?
$foo = array(
'one' => 1,
'two' => 2
);
$rows = DB::select('mytable')
->where_id($id)
->get_one();
配列の初期化とメソッド チェーンの PSR-2 標準コーディング規則は何ですか?
$foo = array(
'one' => 1,
'two' => 2
);
$rows = DB::select('mytable')
->where_id($id)
->get_one();