added ability to specify foreign key for has_one and has_many relationships.

This commit is contained in:
Taylor Otwell
2011-06-12 22:19:46 -05:00
parent 2bcf7ed327
commit 05b2e28770
2 changed files with 15 additions and 10 deletions

View File

@@ -124,22 +124,24 @@ abstract class Eloquent {
* Retrieve the query for a 1:1 relationship.
*
* @param string $model
* @param string $foreign_key
* @return mixed
*/
public function has_one($model)
public function has_one($model, $foreign_key = null)
{
return Eloquent\Relate::has_one($model, $this);
return Eloquent\Relate::has_one($model, $foreign_key, $this);
}
/**
* Retrieve the query for a 1:* relationship.
*
* @param string $model
* @param string $foreign_key
* @return mixed
*/
public function has_many($model)
public function has_many($model, $foreign_key = null)
{
return Eloquent\Relate::has_many($model, $this);
return Eloquent\Relate::has_many($model, $foreign_key, $this);
}
/**