Update StorageTest.php

This commit is contained in:
Mou Ikkai
2020-09-30 17:54:16 -04:00
committed by GitHub
parent e4c72f6592
commit 7ce51565c2
+3 -3
View File
@@ -12,11 +12,11 @@ Storage::setDevice('disk-b', new Local(__DIR__ . '/../../resources/disk-b'));
class StorageTest extends TestCase
{
public function setUp()
public function setUp(): void
{
}
public function tearDown()
public function tearDown(): void
{
}
@@ -39,4 +39,4 @@ class StorageTest extends TestCase
$this->assertEquals(Storage::exists('disk-b'), true);
$this->assertEquals(Storage::exists('disk-c'), false);
}
}
}