corcel/corcel

View on GitHub
src/Shortcode.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Corcel;

use Thunder\Shortcode\Shortcode\ShortcodeInterface;

/**
 * Interface Shortcode
 *
 * @package Corcel
 * @author Junior Grossi <juniorgro@gmail.com>
 */
interface Shortcode
{
    /**
     * @param ShortcodeInterface $shortcode
     * @return string
     */
    public function render(ShortcodeInterface $shortcode);
}