Esempio n. 1
0
 /**
  * Creates an empty Stack
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->elementCount = count($this->list);
 }
Esempio n. 2
0
 public function __construct($rows, $db = null, $view = null, $name = null)
 {
     parent::__construct($rows, $db);
     $this->_view = $view;
     $this->_name = $name;
 }