示例#1
0
 public function __construct($out = '')
 {
     $accum = new PPDAccum_Hash();
     if ($out !== '') {
         $accum->addLiteral($out);
     }
     parent::__construct($accum);
 }
示例#2
0
 public function __construct($out = '')
 {
     if ($out !== '') {
         $accum = [$out];
     } else {
         $accum = [];
     }
     parent::__construct($accum);
 }