You are here

class ObjWithString in Drupal 9

Same name and namespace in other branches
  1. 10 core/modules/migrate/tests/src/Unit/process/LogTest.php \Drupal\Tests\migrate\Unit\process\ObjWithString

Test class with a __toString() method.

Hierarchy

Expanded class hierarchy of ObjWithString

File

core/modules/migrate/tests/src/Unit/process/LogTest.php, line 99

Namespace

Drupal\Tests\migrate\Unit\process
View source
class ObjWithString {

  /**
   * Returns a string.
   *
   * @return string
   *   A string.
   */
  public function __toString() {
    return 'a test string';
  }

}

Members