1 | <?php |
||
10 | final class DeclareHandler |
||
11 | { |
||
12 | /** @var HandlerContainer */ |
||
13 | private $handlers; |
||
14 | private $delimiter; |
||
15 | |||
16 | 17 | public function __construct(HandlerContainer $container, $delimiter = '%') |
|
21 | |||
22 | /** |
||
23 | * [declare name]Your name is %value%[/declare] |
||
24 | * [name value="Thomas" /] |
||
25 | * |
||
26 | * @param ShortcodeInterface $shortcode |
||
27 | */ |
||
28 | 3 | public function __invoke(ShortcodeInterface $shortcode) |
|
47 | } |
||
48 |