Commit c091248e by creocoder

ActiveRecord::getNamespacedClass() call style

parent 4b9e9654
......@@ -440,7 +440,7 @@ class ActiveRecord extends Model
public function hasOne($class, $link)
{
return new ActiveRelation(array(
'modelClass' => static::getNamespacedClass($class),
'modelClass' => $this->getNamespacedClass($class),
'primaryModel' => $this,
'link' => $link,
'multiple' => false,
......@@ -478,7 +478,7 @@ class ActiveRecord extends Model
public function hasMany($class, $link)
{
return new ActiveRelation(array(
'modelClass' => static::getNamespacedClass($class),
'modelClass' => $this->getNamespacedClass($class),
'primaryModel' => $this,
'link' => $link,
'multiple' => true,
......
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