Пример #1
0
 /**
  * Add a binding to the query.
  *
  * @param mixed $value
  * @param string $type
  * @return $this 
  * @throws \InvalidArgumentException
  * @static 
  */
 public static function addBinding($value, $type = 'where')
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::addBinding($value, $type);
 }