class StubGlobalExecutionContext in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Fixtures/StubGlobalExecutionContext.php \Symfony\Component\Validator\Tests\Fixtures\StubGlobalExecutionContext
@since 2.5.3
@author Bernhard Schussek <bschussek@gmail.com>
Hierarchy
- class \Symfony\Component\Validator\Tests\Fixtures\StubGlobalExecutionContext implements GlobalExecutionContextInterface
Expanded class hierarchy of StubGlobalExecutionContext
Deprecated
since version 2.5, to be removed in 3.0
File
- vendor/
symfony/ validator/ Tests/ Fixtures/ StubGlobalExecutionContext.php, line 25
Namespace
Symfony\Component\Validator\Tests\FixturesView source
class StubGlobalExecutionContext implements GlobalExecutionContextInterface {
private $violations;
private $root;
private $visitor;
public function __construct($root = null, ValidationVisitorInterface $visitor = null) {
$this->violations = new ConstraintViolationList();
$this->root = $root;
$this->visitor = $visitor;
}
public function getViolations() {
return $this->violations;
}
public function setRoot($root) {
$this->root = $root;
}
public function getRoot() {
return $this->root;
}
public function setVisitor(ValidationVisitorInterface $visitor) {
$this->visitor = $visitor;
}
public function getVisitor() {
return $this->visitor;
}
public function getValidatorFactory() {
}
public function getMetadataFactory() {
}
}