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

Set billing_phone.
public set_billing_phone ( string $value )
$value string
Пример #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());
 }