1 | <?php |
||
9 | final class WrapHandler |
||
10 | { |
||
11 | private $before; |
||
12 | private $after; |
||
13 | |||
14 | 17 | public function __construct($before, $after) |
|
19 | |||
20 | 17 | public static function createBold() |
|
24 | |||
25 | /** |
||
26 | * [b]content[b] |
||
27 | * [strong]content[/strong] |
||
28 | * |
||
29 | * @param ShortcodeInterface $shortcode |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | 2 | public function __invoke(ShortcodeInterface $shortcode) |
|
37 | } |
||
38 |