Define a basic component

This commit is contained in:
Aidan Woods 2019-01-20 02:21:56 +00:00
parent db657952d1
commit 5a00cb7f07
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

13
src/Component.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace Erusev\Parsedown;
use Erusev\Parsedown\AST\StateRenderable;
interface Component
{
/**
* @return StateRenderable
*/
public function stateRenderable(Parsedown $Parsedown);
}