Unverified Commit 9632fb98 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3131402 by longwave, jungle, Berdir: Remove return type hints from abstract test classes

parent bd647839
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ abstract class LocaleUpdateBase extends BrowserTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
  protected function setUp() {
    parent::setUp();

    // Setup timestamps to identify old and new translation sources.
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ trait MediaFunctionalTestTrait {
  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
  protected function setUp() {
    parent::setUp();

    // Have two users ready to be used in tests.
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ abstract class MediaSourceTestBase extends MediaJavascriptTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
  protected function setUp() {
    parent::setUp();

    // Let's set the canonical flag in the base class of the source tests,
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ abstract class MigrateProcessTestCase extends MigrateTestCase {
  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
  protected function setUp() {
    $this->row = $this->getMockBuilder('Drupal\migrate\Row')
      ->disableOriginalConstructor()
      ->getMock();
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ abstract class MigrationLookupTestCase extends MigrateProcessTestCase {
  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
  protected function setUp() {
    parent::setUp();
    $this->migrateStub = $this->prophesize(MigrateStub::class);
    $this->migrateLookup = $this->prophesize(MigrateLookupInterface::class);
Loading