Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Dec 12, 2023
1 parent c0a3245 commit 9d8999d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Support/DotenvEditor/DotenvEditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

use InvalidArgumentException;
use Jackiedo\DotenvEditor\DotenvEditor as Editor;
use Jackiedo\DotenvEditor\Workers\Formatters\Formatter;
use Jackiedo\DotenvEditor\DotenvReader;
use Jackiedo\DotenvEditor\DotenvWriter;
use Jackiedo\DotenvEditor\Workers\Formatters\Formatter;
use Jackiedo\DotenvEditor\Workers\Parsers\ParserV3;

/**
Expand All @@ -33,7 +33,7 @@ class DotenvEditor extends Editor
public function __construct(string $backupPath = '', bool $autoBackup = true)
{
$formatter = new Formatter();
$parser = new ParserV3();
$parser = new ParserV3();

$this->reader = new DotenvReader($parser);
$this->writer = new DotenvWriter($formatter);
Expand Down

0 comments on commit 9d8999d

Please sign in to comment.