Fix PHPUnit compatibility

Add `void` return types to the `setUp()` methods.
This commit is contained in:
Oliver Davies 2019-10-05 19:17:58 +01:00
parent 27e0694872
commit 906e4c1938
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ class RetrievingEventsTest extends TestCase
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function setUp() public function setUp(): void
{ {
$this->extension = new TalksExtension(); $this->extension = new TalksExtension();
} }

View file

@ -17,7 +17,7 @@ class RetrievingTalksTest extends TestCase
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function setUp() public function setUp(): void
{ {
$this->extension = new TalksExtension(); $this->extension = new TalksExtension();
} }