3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00

Return type declaration must be compatible with TestCase->setUp() : void

This commit is contained in:
Michael Stenta 2020-11-20 10:54:29 -05:00
parent 9821807649
commit 56620eaf61
4 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ class ConsumerConfigTest extends OauthTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
protected function setUp(): void {
parent::setUp();

View file

@ -32,7 +32,7 @@ class OauthTestBase extends TokenBearerFunctionalTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
protected function setUp(): void {
parent::setUp();

View file

@ -38,7 +38,7 @@ abstract class AssetTestBase extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
protected function setUp(): void {
parent::setUp();
$this->adminUser = $this->drupalCreateUser($this->getAdministratorPermissions());
$this->drupalLogin($this->adminUser);

View file

@ -30,7 +30,7 @@ class ManagedRolePermissionsTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
protected function setUp():void {
parent::setUp();
$this->installEntitySchema('user');