This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/ConstraintViolation.php

106 lines
2.2 KiB
PHP
Raw Normal View History

<?php
2010-10-02 11:42:31 +01:00
/*
* This file is part of the Symfony package.
2010-10-02 11:42:31 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-10-02 11:42:31 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2010-10-02 11:42:31 +01:00
*/
namespace Symfony\Component\Validator;
/**
* Represents a single violation of a constraint.
2011-07-20 09:37:57 +01:00
*
* @api
*/
class ConstraintViolation
{
protected $messageTemplate;
protected $messageParameters;
protected $root;
protected $propertyPath;
protected $invalidValue;
public function __construct($messageTemplate, array $messageParameters, $root, $propertyPath, $invalidValue)
{
$this->messageTemplate = $messageTemplate;
$this->messageParameters = $messageParameters;
$this->root = $root;
$this->propertyPath = $propertyPath;
$this->invalidValue = $invalidValue;
}
/**
* @return string
*/
public function __toString()
{
$class = (string) (is_object($this->root) ? get_class($this->root) : $this->root);
$propertyPath = (string) $this->propertyPath;
if ('' !== $propertyPath && '[' !== $propertyPath[0] && '' !== $class) {
$class .= '.';
}
return $class . $propertyPath . ":\n " . $this->getMessage();
}
/**
* @return string
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function getMessageTemplate()
{
return $this->messageTemplate;
}
/**
* @return array
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function getMessageParameters()
{
return $this->messageParameters;
}
/**
* Returns the violation message.
*
* @return string
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function getMessage()
{
$parameters = $this->messageParameters;
foreach ($parameters as $i => $parameter) {
if (is_array($parameter)) {
$parameters[$i] = 'Array';
}
}
return strtr($this->messageTemplate, $parameters);
}
public function getRoot()
{
return $this->root;
}
public function getPropertyPath()
{
return $this->propertyPath;
}
public function getInvalidValue()
{
return $this->invalidValue;
}
2011-06-08 11:16:48 +01:00
}