Exemple #1
0
 /**
  * Set the bindings on the query builder.
  *
  * @param array $bindings
  * @param string $type
  * @return $this 
  * @throws \InvalidArgumentException
  * @static 
  */
 public static function setBindings($bindings, $type = 'where')
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::setBindings($bindings, $type);
 }