mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
31 lines
330 B
PHP
Executable File
31 lines
330 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Barcode;
|
|
|
|
interface BarcodeInterface
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getType();
|
|
|
|
/**
|
|
* @return mixed[]
|
|
*/
|
|
public function getData();
|
|
|
|
/**
|
|
* @param string $key
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getKey($key);
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getChecksum();
|
|
|
|
}
|