Browse Source

Removed a Useless if conditional from bind method

kapil verma 12 years ago
parent
commit
2773e317ea
1 changed files with 0 additions and 3 deletions
  1. 0 3
      laravel/database/eloquent/relationships/belongs_to.php

+ 0 - 3
laravel/database/eloquent/relationships/belongs_to.php

@@ -119,9 +119,6 @@ class Belongs_To extends Relationship {
 	
 	
 	public function bind($id)
 	public function bind($id)
 	{
 	{
-		if((int) $this->foreign_value() === (int) $id)
-			return $this->base;
-
 		$this->base->fill(array($this->foreign => $id))->save();
 		$this->base->fill(array($this->foreign => $id))->save();
 
 
 		return $this->base;
 		return $this->base;