class ObjWithString

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/process/LogTest.php \Drupal\Tests\migrate\Unit\process\ObjWithString
  2. 11.x 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 101

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

Title Sort descending Modifiers Object type Summary
ObjWithString::__toString public function Returns a string.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.