SimpleSoftwareIO\QrCode\BaconQrCodeGenerator::__call PHP Method

__call() public method

Creates a new datatype object and then generates a QrCode.
public __call ( $method, $arguments )
$method
$arguments
    public function __call($method, $arguments)
    {
        $dataType = $this->createClass($method);
        $dataType->create($arguments);
        return $this->generate(strval($dataType));
    }