User.php
568 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace app\wx\models;
use Yii;
use yii\log\Logger;
use yii\base\Exception;
use common\models\EngineerProfile as EngineerProfileModel;
use common\models\Address as AddressModel;
use domain\finance\models\EngineerWallet as EngineerWalletModel;
/**
* Class User
* @package app\wx\models
*/
class User
{
public function register()
{
}
/** @inheritdoc */
public function beforeSave($insert)
{
}
/** @inheritdoc */
public function afterSave($insert, $changedAttributes)
{
}
}