Skip to content

Commit 1f8fdf0

Browse files
Remove : void for PHP version compat
1 parent 243ec85 commit 1f8fdf0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test-arguments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function setUp()
9696
/**
9797
* Tear down fixtures
9898
*/
99-
public function tearDown(): void
99+
public function tearDown()
100100
{
101101
$this->flags = null;
102102
$this->options = null;

tests/test-table-ascii.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function setUp() {
3737
/**
3838
* Cleans temporary file
3939
*/
40-
public function tearDown(): void {
40+
public function tearDown() {
4141
if (file_exists($this->_mockFile)) {
4242
unlink($this->_mockFile);
4343
}

0 commit comments

Comments
 (0)