Skip to content

Commit

Permalink
Issue Lullabot#9: Fixing variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-saransig-lullabot committed Nov 30, 2023
1 parent 65eccf5 commit c7114e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AcquiaClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ public function deleteDomain($environmentUuid, $domain): OperationResponse
*/
public function purgeVarnishCache($environmentUuid, array $domains): OperationResponse
{
$domains = new Domains(self::factory($this->connector));
return $domains->purge($environmentUuid, $domains);
$domain = new Domains(self::factory($this->connector));
return $domain->purge($environmentUuid, $domains);
}

/**
Expand Down

0 comments on commit c7114e2

Please sign in to comment.