示例#1
0
文件: Stack.php 项目: rgantt/japha
 /**
  * Creates an empty Stack
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->elementCount = count($this->list);
 }
示例#2
0
文件: ViewVector.php 项目: o100ja/rug
 public function __construct($rows, $db = null, $view = null, $name = null)
 {
     parent::__construct($rows, $db);
     $this->_view = $view;
     $this->_name = $name;
 }