format() public method

Switches the format of the outputted QrCode or defaults to SVG.
public format ( string $format )
$format string The desired format.
Esempio n. 1
0
 /**
  * Switches the format of the outputted QrCode or defaults to SVG
  *
  * @param string $format The desired format.
  * @return $this 
  * @throws \InvalidArgumentException
  * @static 
  */
 public static function format($format)
 {
     return \SimpleSoftwareIO\QrCode\BaconQrCodeGenerator::format($format);
 }