Przeglądaj źródła

Indentation + commentaires modèle CommandeProduit

dev
Guillaume Bourgeois 6 lat temu
rodzic
commit
89000f353c
1 zmienionych plików z 11 dodań i 6 usunięć
  1. +11
    -6
      common/models/CommandeProduit.php

+ 11
- 6
common/models/CommandeProduit.php Wyświetl plik

@@ -48,12 +48,14 @@ use Yii;
* @property integer $id_produit
* @property double $quantite
*/
class CommandeProduit extends \yii\db\ActiveRecord {
class CommandeProduit extends \yii\db\ActiveRecord
{

/**
* @inheritdoc
*/
public static function tableName() {
public static function tableName()
{
return 'commande_produit';
}

@@ -61,14 +63,16 @@ class CommandeProduit extends \yii\db\ActiveRecord {
* Relations
*/

public function getProduit() {
public function getProduit()
{
return $this->hasOne(Produit::className(), ['id' => 'id_produit']);
}

/**
* @inheritdoc
*/
public function rules() {
public function rules()
{
return [
[['id_commande', 'id_produit', 'quantite'], 'required'],
[['id_commande', 'id_produit'], 'integer'],
@@ -79,7 +83,8 @@ class CommandeProduit extends \yii\db\ActiveRecord {
/**
* @inheritdoc
*/
public function attributeLabels() {
public function attributeLabels()
{
return [
'id' => 'ID',
'id_commande' => 'Id Commande',
@@ -88,4 +93,4 @@ class CommandeProduit extends \yii\db\ActiveRecord {
];
}

}
}

Ładowanie…
Anuluj
Zapisz