create() public method

Create the image.
public create ( )
コード例 #1
-1
ファイル: QrCodeTest.php プロジェクト: aydancoskun/octobercms
 public function testCreateQrCode()
 {
     $qrCode = new QrCode();
     $qrCode->setText("Life is too short to be generating QR codes");
     $qrCode->setSize(300);
     $qrCode->create();
     $this->assertTrue(true);
 }