Code Duplication    Length = 8-8 lines in 2 locations

src/QueryBuilder.php 2 locations

@@ 723-730 (lines=8) @@
720
	 *
721
	 * @return QueryBuilderInterface
722
	 */
723
	public function groupStart(): QueryBuilderInterface
724
	{
725
		$conj = empty($this->queryMap) ? ' WHERE ' : ' ';
726
727
		$this->_appendMap($conj, '(', 'group_start');
728
729
		return $this;
730
	}
731
732
	/**
733
	 * Adds a paren to the current query for query grouping,
@@ 738-745 (lines=8) @@
735
	 *
736
	 * @return QueryBuilderInterface
737
	 */
738
	public function notGroupStart(): QueryBuilderInterface
739
	{
740
		$conj = empty($this->queryMap) ? ' WHERE ' : ' AND ';
741
742
		$this->_appendMap($conj, ' NOT (', 'group_start');
743
744
		return $this;
745
	}
746
747
	/**
748
	 * Adds a paren to the current query for query grouping,