mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
23 lines
434 B
PHP
23 lines
434 B
PHP
<?php
|
|
|
|
namespace Erusev\Parsedown\Components;
|
|
|
|
use Erusev\Parsedown\Component;
|
|
use Erusev\Parsedown\Parsing\Context;
|
|
use Erusev\Parsedown\State;
|
|
|
|
interface Block extends Component
|
|
{
|
|
/**
|
|
* @param Context $Context
|
|
* @param State $State
|
|
* @param Block|null $Block
|
|
* @return static|null
|
|
*/
|
|
public static function build(
|
|
Context $Context,
|
|
State $State,
|
|
Block $Block = null
|
|
);
|
|
}
|