AstroFields/Core

View on GitHub
src/Templates/TemplateInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace WCM\AstroFields\Core\Templates;

interface TemplateInterface
{
    /**
     * Attach data for the template
     * @param mixed $data
     */
    public function attach( $data );

    /**
     * Returns the final MarkUp
     * @return string
     */
    public function display();
}