12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- namespace App\Libs\Push\HuaWei\Admin\Msg\Android;
- use Exception;
- class Badge
- {
- private $add_num;
- private $class;
- private $set_num;
- private $fields;
- public function __construct()
- {
- $this->fields = array();
- }
- public function add_num($value)
- {
- $this->add_num = $value;
- }
- public function setclass($value)
- {
- $this->class = $value;
- }
- public function set_num($value)
- {
- $this->set_num = $value;
- }
- public function getFields()
- {
- return $this->fields;
- }
- public function buildFields()
- {
- try {
- $this->check_parameter();
- } catch (Exception $e) {
- echo $e;
- }
- $keys = array(
- 'add_num',
- 'class',
- 'set_num'
- );
- foreach ($keys as $key) {
- if (isset($this->$key)) {
- $this->fields[$key] = $this->$key;
- }
- }
- }
- private function check_parameter()
- {
- if (($this->add_num) && (gettype($this->add_num) != "integer")) {
- throw new Exception("type of add_num is wrong.");
- }
- if (is_int($this->add_num) && ($this->add_num < 1 || $this->add_num > 100)) {
- throw new Exception("add_num should locate between 0 and 100");
- }
- if (($this->set_num) && (gettype($this->set_num) != "integer")) {
- throw new Exception("type of set_num is wrong.");
- }
- if (is_int($this->set_num) && ($this->set_num < 1 || $this->set_num > 100)) {
- throw new Exception("set_num should locate between 0 and 100");
- }
- }
- }
|