SevenShores\Hubspot\Tests\Integration\Resources\ContactsTest::update PHP Method

update() public method

public update ( )
    public function update()
    {
        $contact = $this->createContact();
        $response = $this->contacts->update($contact->vid, [['property' => 'firstname', 'value' => 'joe'], ['property' => 'lastname', 'value' => 'user']]);
        $this->assertEquals(204, $response->getStatusCode());
    }