Skip to content

Commit

Permalink
Don't use static
Browse files Browse the repository at this point in the history
  • Loading branch information
jbvolta committed Nov 14, 2023
1 parent e4ce78b commit 03ba3c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ protected function tearDown(): void

// Configuration

protected static function withApiKey($apiKey = "pk_secretsauce")
protected function withApiKey($apiKey = "pk_secretsauce")
{
WorkOS::setApiKey($apiKey);
}

protected static function withApiKeyAndClientId($apiKey = "pk_secretsauce", $clientId = "client_pizza")
protected function withApiKeyAndClientId($apiKey = "pk_secretsauce", $clientId = "client_pizza")
{
WorkOS::setApiKey($apiKey);
WorkOS::setClientId($clientId);
Expand Down

0 comments on commit 03ba3c7

Please sign in to comment.