示例#1
0
 public function __construct($chars = array())
 {
     parent::__construct();
     $this->chars = is_array($chars) ? $chars : array($chars);
 }
示例#2
0
 public function __construct($words = array())
 {
     parent::__construct();
     $this->words = is_array($words) ? $words : array($words);
 }
示例#3
0
 public function __construct($char = null)
 {
     parent::__construct();
     $this->char = $char;
 }
示例#4
0
 public function __construct($number = null)
 {
     parent::__construct();
     $this->number = $number;
 }
示例#5
0
 public function __construct(Parser $p)
 {
     parent::__construct();
     $this->parser = $p;
 }
示例#6
0
 public function __construct($word = null)
 {
     parent::__construct();
     $this->word = $word;
 }