Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ksvirkou-hubspot committed Mar 16, 2020
1 parent ae6d1bf commit c609699
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Resources/Contacts.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public function getById($id, array $params = [])
* @param array $vids Array of visitor IDs
* @param array $params Array of optional parameters ['property', 'propertyMode', 'formSubmissionMode',
* 'showListMemberships', 'includeDeletes']
*
*
* @see https://developers.hubspot.com/docs/methods/contacts/get_batch_by_vid
*
* @return \SevenShores\Hubspot\Http\Response
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Abstraction/DefaultTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function setUp()
}
sleep(1);
}

protected function getClient(): Client
{
return new Client(['key' => getenv($this->key)]);
Expand Down
5 changes: 2 additions & 3 deletions tests/Integration/Resources/CompaniesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function delete()
$this->assertEquals(200, $response->getStatusCode());
$this->assertEquals($this->entity->companyId, $response->companyId);
$this->assertTrue($response['deleted']);

$this->entity = null;
}

Expand Down Expand Up @@ -284,7 +284,6 @@ protected function deleteAssociatedContacts($companyId, $contactIds = [])

protected function createEntity()
{

return $this->resource->create([
[
'name' => 'name',
Expand All @@ -298,7 +297,7 @@ protected function createEntity()
'name' => 'domain',
'value' => 'example.com',
],
]);
]);
}

protected function deleteEntity()
Expand Down

0 comments on commit c609699

Please sign in to comment.