diff --git a/tests/unit/Storage/Device/LocalTest.php b/tests/unit/Storage/Device/LocalTest.php index 3d00138fbe..c09c0edff3 100644 --- a/tests/unit/Storage/Device/LocalTest.php +++ b/tests/unit/Storage/Device/LocalTest.php @@ -12,12 +12,12 @@ class LocalTest extends TestCase */ protected $object = null; - public function setUp() + public function setUp(): void { $this->object = new Local(realpath(__DIR__ . '/../../../resources/disk-a')); } - public function tearDown() + public function tearDown(): void { } @@ -120,4 +120,4 @@ class LocalTest extends TestCase { $this->assertGreaterThan(0, $this->object->getPartitionTotalSpace()); } -} \ No newline at end of file +}