1 | <?php |
||
9 | class ApplyResultsEvent |
||
10 | { |
||
11 | private $shortcode; |
||
12 | private $text; |
||
13 | private $replaces; |
||
14 | private $result; |
||
15 | |||
16 | public function __construct(ShortcodeInterface $shortcode = null, $text, array $replaces) |
||
23 | |||
24 | public function getText() |
||
28 | |||
29 | public function getReplaces() |
||
33 | |||
34 | public function getShortcode() |
||
38 | |||
39 | public function setResult($result) |
||
43 | |||
44 | public function getResult() |
||
48 | |||
49 | public function hasResult() |
||
53 | } |
||
54 |