| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | abstract class Message |
||
| 6 | { |
||
| 7 | protected $message = []; |
||
| 8 | protected $at; |
||
| 9 | |||
| 10 | |||
| 11 | public function getMessage(){ |
||
| 13 | } |
||
| 14 | |||
| 15 | protected function makeAt($mobiles = [],$atAll = false){ |
||
| 16 | return [ |
||
| 17 | 'at' => [ |
||
| 18 | 'atMobiles' => $mobiles, |
||
| 19 | 'isAtAll' => $atAll |
||
| 20 | ] |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function sendAt($mobiles = [],$atAll = false){ |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getBody(){ |
||
| 35 | } |
||
| 36 | |||
| 37 | } |