Files
yii2/tests/data/ar/OrderItemWithConstructor.php
Alexander Makarov fb23b0d0ea Code style fixes
2017-11-01 02:43:02 +03:00

47 lines
1022 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\data\ar;
/**
* OrderItemWithConstructor.
*
* @property int $order_id
* @property int $item_id
* @property int $quantity
* @property string $subtotal
*/
class OrderItemWithConstructor extends ActiveRecord
{
public static function tableName()
{
return 'order_item';
}
public function __construct($item_id, $quantity)
{
$this->item_id = $item_id;
$this->quantity = $quantity;
parent::__construct();
}
public static function instance($refresh = false)
{
return self::instantiate([]);
}
public static function instantiate($row)
{
return (new \ReflectionClass(static::className()))->newInstanceWithoutConstructor();
}
public function getOrder()
{
return $this->hasOne(OrderWithConstructor::className(), ['id' => 'order_id']);
}
}