You are here

class StringClass in Plug 7

Hierarchy

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

Expanded class hierarchy of StringClass

File

lib/Symfony/translation/Tests/TranslatorTest.php, line 615

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