spiritix/html-to-pdf

View on GitHub
src/Spiritix/HtmlToPdf/Input/InputInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * This file is part of the spiritix/html-to-pdf package.
 *
 * @copyright Copyright (c) Matthias Isler <mi@matthias-isler.ch>
 * @license   MIT
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Spiritix\HtmlToPdf\Input;

/**
 * Input handler interface.
 *
 * @package Spiritix\HtmlToPdf\Input
 * @author  Matthias Isler <mi@matthias-isler.ch>
 */
interface InputInterface
{
    /**
     * Must return the input HTML markup.
     *
     * @return string
     */
    public function getHtml();
}