Remove random duplicate

This commit is contained in:
Dennis Eichhorn 2016-08-11 17:26:13 +02:00
parent fbf386b3e5
commit 449c88cc32

View File

@ -160,8 +160,6 @@ class Builder extends BuilderAbstract
protected $unionOrders = []; protected $unionOrders = [];
public $random = false;
/** /**
* Comparison operators. * Comparison operators.
* *
@ -807,13 +805,6 @@ class Builder extends BuilderAbstract
return $this; return $this;
} }
public function random()
{
$this->random = true;
return $this;
}
public function on() public function on()
{ {