Okay I don't know whats the equivalent of super() in php.
class box {
var $items;
var $increment;
function add($obj){
$this->items[$increment]=$obj;
$this->increment++;
}
}
class cart extends box{
function add($obj){
//I want to do other things here before I do something like the add
super()->add($obj);
}
}