You are here

class StringClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Tests/TranslatorTest.php \Symfony\Component\Translation\Tests\StringClass

Hierarchy

  • class \Symfony\Component\Translation\Tests\StringClass

Expanded class hierarchy of StringClass

File

vendor/symfony/translation/Tests/TranslatorTest.php, line 614

Namespace

Symfony\Component\Translation\Tests
View source
class StringClass {
  protected $str;
  public function __construct($str) {
    $this->str = $str;
  }
  public function __toString() {
    return $this->str;
  }

}

Members