1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Define a basic component

This commit is contained in:
Aidan Woods
2019-01-20 02:21:56 +00:00
parent db657952d1
commit 5a00cb7f07

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);
}