You are here

class ComparisonTest_Class in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php \Symfony\Component\Validator\Tests\Constraints\ComparisonTest_Class

Hierarchy

Expanded class hierarchy of ComparisonTest_Class

File

vendor/symfony/validator/Tests/Constraints/AbstractComparisonValidatorTestCase.php, line 17

Namespace

Symfony\Component\Validator\Tests\Constraints
View source
class ComparisonTest_Class {
  protected $value;
  public function __construct($value) {
    $this->value = $value;
  }
  public function __toString() {
    return (string) $this->value;
  }

}

Members