You are here

public function ExecutionContext::getObject in Plug 7

Returns the currently validated object.

If the validator is currently validating a class constraint, the object of that class is returned. If it is a validating a property or getter constraint, the object that the property/getter belongs to is returned.

In other cases, null is returned.

Return value

object|null The currently validated object or null.

Overrides ExecutionContextInterface::getObject

File

lib/Symfony/validator/Symfony/Component/Validator/Context/ExecutionContext.php, line 263

Class

ExecutionContext
The context used and created by {@link ExecutionContextFactory}.

Namespace

Symfony\Component\Validator\Context

Code

public function getObject() {
  return $this->object;
}