Skip to content

Commit 7738fec

Browse files
Apply fixes from StyleCI (#396)
1 parent 2b96758 commit 7738fec

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/Dotenv.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use Dotenv\Repository\RepositoryBuilder;
99
use Dotenv\Repository\RepositoryInterface;
1010
use Dotenv\Store\StoreBuilder;
11-
use PhpOption\Option;
1211

1312
class Dotenv
1413
{

src/Store/File/Paths.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
namespace Dotenv\Store\File;
44

5-
use PhpOption\Option;
6-
75
class Paths
86
{
97
/**

tests/Dotenv/StoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function testFileReadMultipleWithoutShortCircuitModeDirect()
7070
{
7171
$this->assertSame(
7272
[
73-
$this->folder.DIRECTORY_SEPARATOR.'.env' => "FOO=bar\nBAR=baz\nSPACED=\"with spaces\"\n\nNULL=\n",
73+
$this->folder.DIRECTORY_SEPARATOR.'.env' => "FOO=bar\nBAR=baz\nSPACED=\"with spaces\"\n\nNULL=\n",
7474
$this->folder.DIRECTORY_SEPARATOR.'example.env' => "EG=\"example\"\n",
7575
],
7676
Reader::read(

0 commit comments

Comments
 (0)