Symfony\Component\Validator\ExecutionContext::getViolations PHP Method

getViolations() public method

public getViolations ( ) : ConstraintViolationList
return ConstraintViolationList
    public function getViolations()
    {
        return $this->violations;
    }

Usage Example

 public function testAddViolationAtUsesPassedNullValue()
 {
     $this->translator->expects($this->once())->method('trans')->with('Error', array('foo' => 'bar'))->will($this->returnValue('Translated error'));
     $this->translator->expects($this->once())->method('transChoice')->with('Choice error', 2, array('foo' => 'bar'))->will($this->returnValue('Translated choice error'));
     // passed null value should override preconfigured value "invalid"
     $this->context->addViolationAt('bam.baz', 'Error', array('foo' => 'bar'), null);
     $this->context->addViolationAt('bam.baz', 'Choice error', array('foo' => 'bar'), null, 2);
     $this->assertEquals(new ConstraintViolationList(array(new ConstraintViolation('Translated error', 'Error', array('foo' => 'bar'), 'Root', 'foo.bar.bam.baz', null), new ConstraintViolation('Translated choice error', 'Choice error', array('foo' => 'bar'), 'Root', 'foo.bar.bam.baz', null, 2))), $this->context->getViolations());
 }
All Usage Examples Of Symfony\Component\Validator\ExecutionContext::getViolations