get_type() public method

Get internal type (post type.)
public get_type ( ) : string
return string
Exemplo n.º 1
0
 /**
  * Test: get_type
  */
 function test_get_type()
 {
     $object = new WC_Order_Refund();
     $this->assertEquals('shop_order_refund', $object->get_type());
 }