Invocation
<?php
  $cart 
= new NamedCart("PenguinGear");
  
$cart->add_item(1709232);
?>
Static Method calls
<?php
  
class Widget {
    function 
report() {
        echo 
"Widget reporting for duty.";
    }
  }

Widget::report();
?>