You are here

class SafeMarkupTestString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php \Drupal\Tests\Component\Utility\SafeMarkupTestString

Hierarchy

Expanded class hierarchy of SafeMarkupTestString

File

core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php, line 213
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