WC_Order_Refund::get_type PHP Метод

get_type() публичный Метод

Get internal type (post type.)
public get_type ( ) : string
Результат string
    public function get_type()
    {
        return 'shop_order_refund';
    }

Usage Example

Пример #1
0
 /**
  * Test: get_type
  */
 function test_get_type()
 {
     $object = new WC_Order_Refund();
     $this->assertEquals('shop_order_refund', $object->get_type());
 }