File "DataTypeInterface.php"
Full Path: /home/bettaeza/flyinsyria.com/simplesoftwareio/simple-qrcode/src/DataTypes/DataTypeInterface.php
File size: 356 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace SimpleSoftwareIO\QrCode\DataTypes;
interface DataTypeInterface
{
/**
* Generates the DataType Object and sets all of its properties.
*/
public function create(array $arguments);
/**
* Returns the correct QrCode format.
*
* @return string
*/
public function __toString();
}