Commit e9758fec by Carsten Brandt

fixed test break

parent fd31e080
...@@ -32,6 +32,11 @@ class Order extends ActiveRecord ...@@ -32,6 +32,11 @@ class Order extends ActiveRecord
return $this->hasMany(OrderItem::className(), ['order_id' => 'id']); return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
} }
public function getOrderItemsWithNullFK()
{
return $this->hasMany(OrderItemWithNullFK::className(), ['order_id' => 'id']);
}
public function getItems() public function getItems()
{ {
return $this->hasMany(Item::className(), ['id' => 'item_id']) return $this->hasMany(Item::className(), ['id' => 'item_id'])
...@@ -72,7 +77,7 @@ class Order extends ActiveRecord ...@@ -72,7 +77,7 @@ class Order extends ActiveRecord
public function getBooksWithNullFK() public function getBooksWithNullFK()
{ {
return $this->hasMany(Item::className(), ['id' => 'item_id']) return $this->hasMany(Item::className(), ['id' => 'item_id'])
->via('orderItemsWithNullFk') ->via('orderItemsWithNullFK')
->where(['category_id' => 1]); ->where(['category_id' => 1]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment