| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Interface QROutputInterface, |
| 5 |
* |
| 6 |
* @filesource QROutputInterface.php |
| 7 |
* @created 02.12.2015 |
| 8 |
* @package chillerlan\QRCode\Output |
| 9 |
* @author Smiley <smiley@chillerlan.net> |
| 10 |
* @copyright 2015 Smiley |
| 11 |
* @license MIT |
| 12 |
*/ |
| 13 |
namespace YoastSEO_Vendor\chillerlan\QRCode\Output; |
| 14 |
|
| 15 |
/** |
| 16 |
* Converts the data matrix into readable output |
| 17 |
*/ |
| 18 |
interface QROutputInterface |
| 19 |
{ |
| 20 |
/** |
| 21 |
* @return mixed |
| 22 |
*/ |
| 23 |
public function dump(); |
| 24 |
} |
| 25 |
|