updateNoValidate() public static method

public static updateNoValidate ( integer $customerId, array $attributes ) : CustomerGateway
$customerId integer
$attributes array
return CustomerGateway
示例#1
0
 public function testUpdateNoValidate()
 {
     $result = Braintree\Customer::create(['firstName' => 'Old First', 'lastName' => 'Old Last', 'company' => 'Old Company', 'email' => '*****@*****.**', 'phone' => 'old phone', 'fax' => 'old fax', 'website' => 'http://old.example.com']);
     $this->assertEquals(true, $result->success);
     $customer = $result->customer;
     $updated = Braintree\Customer::updateNoValidate($customer->id, ['firstName' => 'New First', 'lastName' => 'New Last', 'company' => 'New Company', 'email' => '*****@*****.**', 'phone' => 'new phone', 'fax' => 'new fax', 'website' => 'http://new.example.com']);
     $this->assertEquals('New First', $updated->firstName);
     $this->assertEquals('New Last', $updated->lastName);
     $this->assertEquals('New Company', $updated->company);
     $this->assertEquals('*****@*****.**', $updated->email);
     $this->assertEquals('new phone', $updated->phone);
     $this->assertEquals('new fax', $updated->fax);
     $this->assertEquals('http://new.example.com', $updated->website);
 }