Commit 901dabc3 by Qiang Xue

Merge pull request #162 from creocoder/active-record-get-relation

ActiveRecord::getRelation() bugfix
parents 1c93c503 37f3a400
...@@ -1124,9 +1124,9 @@ class ActiveRecord extends Model ...@@ -1124,9 +1124,9 @@ class ActiveRecord extends Model
return $relation; return $relation;
} }
} catch (UnknownMethodException $e) { } catch (UnknownMethodException $e) {
}
throw new InvalidParamException(get_class($this) . ' has no relation named "' . $name . '".'); throw new InvalidParamException(get_class($this) . ' has no relation named "' . $name . '".');
} }
}
/** /**
* Establishes the relationship between two models. * Establishes the relationship between two models.
......
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