We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e39a9 commit 823d4b0Copy full SHA for 823d4b0
src/Exceptions/ApiKeyIsMissing.php
@@ -17,7 +17,7 @@ final class ApiKeyIsMissing extends InvalidArgumentException
17
public static function create(): self
18
{
19
return new self(
20
- 'The OpenAI API key is missing. Please publish the [openai.php] configuration file and set the [api_key].'
+ 'The OpenAI API Key is missing. Please publish the [openai.php] configuration file and set the [api_key].'
21
);
22
}
23
tests/ServiceProvider.php
@@ -43,5 +43,5 @@
43
(new ServiceProvider($app))->register();
44
})->throws(
45
ApiKeyIsMissing::class,
46
- 'The OpenAI API key is missing. Please publish the [openai.php] configuration file and set the [api_key].',
+ 'The OpenAI API Key is missing. Please publish the [openai.php] configuration file and set the [api_key].',
47
0 commit comments