File "GeneratorInterface.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woo-license-keys/vendor/gladcodes/keygen/src/Keygen/GeneratorInterface.php
File size: 476 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

/*
 * This file is part of the Keygen package.
 *
 * (c) Glad Chinda <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Keygen;

interface GeneratorInterface
{
	/**
	 * Outputs a generated key including the prefix and suffix if any.
	 * May also return transformed keys.
	 * 
	 * @return string
	 */
	public function generate();
}