We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d017538 commit 82f6fc9Copy full SHA for 82f6fc9
.gitignore
@@ -1,3 +1,4 @@
1
/vendor
2
/.idea
3
/composer.lock
4
+/.phpunit.result.cache
tests/LaravelEnvValidatorTest.php
@@ -28,15 +28,15 @@ public function it_has_the_right_error_message()
28
$envValidator = EnvValidatorFactory::buildFromLaravelConfig();
29
$envValidator->validate();
30
} catch (Exception $e) {
31
- $this->assertContains(
+ $this->assertStringContainsString(
32
'VAR_1',
33
$e->getMessage()
34
);
35
36
'VAR_2',
37
38
39
40
'required',
41
42
0 commit comments