WC_Order::set_billing_phone PHP Method

set_billing_phone() public method

Set billing_phone.
public set_billing_phone ( string $value )
$value string
    public function set_billing_phone($value)
    {
        $this->set_address_prop('phone', 'billing', $value);
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Test: get_billing_phone
  */
 function test_get_billing_phone()
 {
     $object = new WC_Order();
     $set_to = '123456678';
     $object->set_billing_phone($set_to);
     $this->assertEquals($set_to, $object->get_billing_phone());
 }
WC_Order