Skip to content

Commit 823d4b0

Browse files
committed
chore: improves wording
1 parent 61e39a9 commit 823d4b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exceptions/ApiKeyIsMissing.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class ApiKeyIsMissing extends InvalidArgumentException
1717
public static function create(): self
1818
{
1919
return new self(
20-
'The OpenAI API key is missing. Please publish the [openai.php] configuration file and set the [api_key].'
20+
'The OpenAI API Key is missing. Please publish the [openai.php] configuration file and set the [api_key].'
2121
);
2222
}
2323
}

tests/ServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
(new ServiceProvider($app))->register();
4444
})->throws(
4545
ApiKeyIsMissing::class,
46-
'The OpenAI API key is missing. Please publish the [openai.php] configuration file and set the [api_key].',
46+
'The OpenAI API Key is missing. Please publish the [openai.php] configuration file and set the [api_key].',
4747
);

0 commit comments

Comments
 (0)