Skip to content
Snippets Groups Projects
Commit 5be18f3f authored by Vladimir Roudakov's avatar Vladimir Roudakov
Browse files

Removed deprecated return type.

parent b5fe3aac
No related branches found
No related tags found
No related merge requests found
Showing
with 13 additions and 13 deletions
......@@ -36,7 +36,7 @@ class LinkCheckerEditFormTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
// Create Basic page and Article node types.
$node_type = NodeType::create([
......
......@@ -32,7 +32,7 @@ class LinkCheckerOverviewTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->adminUser = $this->drupalCreateUser([
'administer linkchecker',
......
......@@ -32,7 +32,7 @@ class LinkCheckerOverviewTest extends WebDriverTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->adminUser = $this->drupalCreateUser([
'administer linkchecker',
......
......@@ -49,7 +49,7 @@ class LinkcheckerCleanUpTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installEntitySchema('node');
......
......@@ -47,7 +47,7 @@ class LinkcheckerHtmlLinkExtractorTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('linkchecker', 'linkchecker_index');
......
......@@ -57,7 +57,7 @@ class LinkcheckerLinkCheckerServiceTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installEntitySchema('linkcheckerlink');
......
......@@ -85,7 +85,7 @@ class LinkcheckerLinkExtractorServiceTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('node', 'node_access');
......
......@@ -51,7 +51,7 @@ class LinkcheckerLinkLinkExtractorTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('linkchecker', 'linkchecker_index');
......
......@@ -50,7 +50,7 @@ class LinkcheckerRedirectTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('linkchecker', 'linkchecker_index');
......
......@@ -80,7 +80,7 @@ class LinkcheckerRepair301Test extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('node', 'node_access');
......
......@@ -59,7 +59,7 @@ class LinkcheckerUnpublish404Test extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('node', 'node_access');
......
......@@ -54,7 +54,7 @@ class QueueLinksTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->installSchema('system', 'sequences');
$this->installSchema('node', 'node_access');
......
......@@ -24,7 +24,7 @@ class LinkCheckerResponseCodesTest extends UnitTestCase {
/**
* {@inheritdoc}
*/
public function setUp() {
public function setUp(): void {
parent::setUp();
$this->linkCheckerResponseCodes = new LinkCheckerResponseCodes();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment