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.
2 parents f4f1b78 + 4952e5c commit 783f120Copy full SHA for 783f120
Tests/DotenvTest.php
@@ -14,6 +14,7 @@
14
use PHPUnit\Framework\TestCase;
15
use Symfony\Component\Dotenv\Dotenv;
16
use Symfony\Component\Dotenv\Exception\FormatException;
17
+use Symfony\Component\Dotenv\Exception\PathException;
18
19
class DotenvTest extends TestCase
20
{
@@ -322,7 +323,7 @@ public function testOverload()
322
323
324
public function testLoadDirectory()
325
- $this->expectException(\Symfony\Component\Dotenv\Exception\PathException::class);
326
+ $this->expectException(PathException::class);
327
$dotenv = new Dotenv();
328
$dotenv->load(__DIR__);
329
}
0 commit comments