Fix PHPUnit compatibility
Add `void` return types to the `setUp()` methods.
This commit is contained in:
parent
27e0694872
commit
906e4c1938
|
@ -17,7 +17,7 @@ class RetrievingEventsTest extends TestCase
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->extension = new TalksExtension();
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ class RetrievingTalksTest extends TestCase
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp()
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->extension = new TalksExtension();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue