Update EnvTest.php

This commit is contained in:
Mou Ikkai
2020-09-30 17:52:02 -04:00
committed by GitHub
parent 12238f5981
commit 3e5eb134d2
+3 -3
View File
@@ -14,7 +14,7 @@ class EnvTest extends TestCase
protected $object = null;
public function setUp()
public function setUp(): void
{
$data = @file_get_contents(__DIR__.'/../../resources/docker/.env');
@@ -25,7 +25,7 @@ class EnvTest extends TestCase
$this->object = new Env($data);
}
public function tearDown()
public function tearDown(): void
{
}
@@ -46,4 +46,4 @@ _APP_Y=value2
_APP_Z=value3
", $this->object->export());
}
}
}