コード例 #1
0
ファイル: ObjectWriterTest.php プロジェクト: sachsy/BaconPdf
 public function testWriteBooleanFalse()
 {
     $this->objectWriter->writeBoolean(false);
     $this->assertSame('false', $this->getFileObjectData());
 }
コード例 #2
0
ファイル: ObjectWriterEvent.php プロジェクト: sachsy/BaconPdf
 /**
  * @iterations 10000
  */
 public function writeBoolean()
 {
     $this->objectWriter->writeBoolean(true);
 }