Exemplo n.º 1
0
 public static function retrieve($id)
 {
     $instance = new Postmaster_Shipment($id);
     $instance->refresh();
     return $instance;
 }
Exemplo n.º 2
0
 function testInvalidRefreshe()
 {
     $this->setExpectedException('Postmaster_Error');
     $shipment = new Postmaster_Shipment();
     $shipment->refresh();
 }