/**
  * @return string
  */
 public function getWhereOperator()
 {
     if (!isset($this->where)) {
         $this->where = $this->filter();
     }
     return $this->where->getConjunction();
 }
Exemple #2
0
 /**
  * @test
  */
 public function itShouldReturnDefaultConjuctionAnd()
 {
     $this->assertSame('AND', $this->where->getConjunction());
 }