コード例 #1
0
 /**
  * @test
  */
 public function itShouldTranslatePhpBoolToSqlBoolValue()
 {
     $this->writer->add(true);
     $this->writer->add(false);
     $this->assertEquals(array(':v1' => 1, ':v2' => 0), $this->writer->get());
 }
コード例 #2
0
 /**
  * @return array
  */
 public function getValues()
 {
     return $this->placeholderWriter->get();
 }