|
- <?php
-
- namespace common\models;
-
- use Yii;
- use yii\helpers\Html ;
-
- /**
- * This is the model class for table "user_boulangerie".
- *
- * @property integer $id
- * @property integer $id_user
- * @property integer $id_boulangerie
- */
- class UserBoulangerie extends \yii\db\ActiveRecord
- {
-
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'user_boulangerie';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id_user', 'id_boulangerie'], 'required'],
- [['id_user', 'id_boulangerie'], 'integer'],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- ];
- }
- }
|