Illuminate\Database\Query\Builder::orWhereTime PHP Method

orWhereTime() public method

Add an "or where time" statement to the query.
public orWhereTime ( string $column, string $operator, integer $value ) : Builder | static
$column string
$operator string
$value integer
return Builder | static
    public function orWhereTime($column, $operator, $value)
    {
        return $this->whereTime($column, $operator, $value, 'or');
    }

Usage Example

 /**
  * Add an "or where time" statement to the query.
  *
  * @param string $column
  * @param string $operator
  * @param int $value
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereTime($column, $operator, $value)
 {
     return \Illuminate\Database\Query\Builder::orWhereTime($column, $operator, $value);
 }