You are here

class SafeMarkupTestString in Drupal 8

Hierarchy

Expanded class hierarchy of SafeMarkupTestString

File

core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php, line 173
Contains \Drupal\Tests\Component\Utility\SafeMarkupTest.

Namespace

Drupal\Tests\Component\Utility
View source
class SafeMarkupTestString {
  protected $string;
  public function __construct($string) {
    $this->string = $string;
  }
  public function __toString() {
    return $this->string;
  }

}

Members