mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-21 14:37:21 +01:00
- #13779: Fixed `yii\db\ActiveRecord::joinWith()` unable to use relation defined via attached behavior. - #5786: Allowed to use custom constructors in ActiveRecord-based classes.
45 lines
970 B
PHP
45 lines
970 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* CustomerWithConstructor
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $email
|
|
* @property string $address
|
|
* @property int $status
|
|
*
|
|
* @property ProfileWithConstructor $profile
|
|
*/
|
|
class CustomerWithConstructor extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'customer';
|
|
}
|
|
|
|
public function __construct($name, $email, $address)
|
|
{
|
|
$this->name = $name;
|
|
$this->email = $email;
|
|
$this->address = $address;
|
|
parent::__construct();
|
|
}
|
|
|
|
public static function instance($refresh = false)
|
|
{
|
|
return self::instantiate([]);
|
|
}
|
|
|
|
public static function instantiate($row)
|
|
{
|
|
return (new \ReflectionClass(static::className()))->newInstanceWithoutConstructor();
|
|
}
|
|
|
|
public function getProfile()
|
|
{
|
|
return $this->hasOne(ProfileWithConstructor::className(), ['id' => 'profile_id']);
|
|
}
|
|
} |