Пример #1
0
 /**
  * @test
  */
 public function itShouldReturnLiterals()
 {
     $result = $this->where->asLiteral('(username is not null and status=:status)')->getComparisons();
     $this->assertSame('(username is not null and status=:status)', $result[0]);
 }