File "BarcodeInterface.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/mpdf/mpdf/src/Barcode/BarcodeInterface.php
File size: 330 bytes
MIME-type: text/x-php
Charset: utf-8

<?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();

}