1 | <?php |
||
12 | class ApplyResultsEvent |
||
13 | { |
||
14 | private $shortcode; |
||
15 | private $text; |
||
16 | private $replaces; |
||
17 | private $result; |
||
18 | |||
19 | public function __construct(ShortcodeInterface $shortcode = null, $text, array $replaces) |
||
26 | |||
27 | public function getText() |
||
31 | |||
32 | public function getReplaces() |
||
36 | |||
37 | public function getShortcode() |
||
41 | |||
42 | public function setResult($result) |
||
46 | |||
47 | public function getResult() |
||
51 | |||
52 | public function hasResult() |
||
56 | } |
||
57 |