Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The method setPropertyPath() in the ExecutionContext class was removed. #47

Open
pawaclawczyk opened this issue Mar 2, 2014 · 0 comments

Comments

@pawaclawczyk
Copy link
Owner

  • The method setPropertyPath() in the ExecutionContext class
    was removed.

    You should use the addViolationAtSubPath() method on the
    ExecutionContext object instead.

    Before:

    public function isPropertyValid(ExecutionContext $context)
    {
        // ...
        $propertyPath = $context->getPropertyPath().'.property';
        $context->setPropertyPath($propertyPath);
        $context->addViolation('Error Message', array(), null);
    }
    

    After:

    public function isPropertyValid(ExecutionContext $context)
    {
        // ...
        $context->addViolationAtSubPath('property', 'Error Message', array(), null);
    
    }
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant