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
 /**
  * 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);
 }