1 | <?php |
||
5 | class ForceReply extends AbstractEntity { |
||
6 | |||
7 | protected $force_reply = true; |
||
8 | |||
9 | protected $selective; |
||
10 | |||
11 | /** |
||
12 | * Always set force_reply flag to true |
||
13 | */ |
||
14 | public function setForceReply() |
||
18 | |||
19 | /** |
||
20 | * @return boolean |
||
21 | */ |
||
22 | public function getForceReply() |
||
26 | |||
27 | /** |
||
28 | * @param mixed $selective |
||
29 | * |
||
30 | * @return $this |
||
31 | */ |
||
32 | public function setSelective($selective) |
||
38 | |||
39 | /** |
||
40 | * @return mixed |
||
41 | */ |
||
42 | public function getSelective() |
||
46 | } |
||
47 |