. */ class Staple_Data_Stack extends Staple_Data_LinkedList { /** * Stack push function * Alias of Staple_Data_LinkedList::add() * @param mixed $data */ public function push($data) { $this->add($data); return $this; } /** * Stack pop function. * Alias of Staple_Data_LinkedList::remove() * @return mixed */ public function pop() { return $this->remove(); } }