Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
|
@ -32,8 +32,6 @@ namespace Symfony\Component\Validator;
|
|||
* element is still the person, but the property path is "address.street".
|
||||
*
|
||||
* @author Bernhard Schussek <bschussek@gmail.com>
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
interface ConstraintViolationInterface
|
||||
{
|
||||
|
@ -41,8 +39,6 @@ interface ConstraintViolationInterface
|
|||
* Returns the violation message.
|
||||
*
|
||||
* @return string The violation message.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getMessage();
|
||||
|
||||
|
@ -54,8 +50,6 @@ interface ConstraintViolationInterface
|
|||
* message template and parameters to a translation engine.
|
||||
*
|
||||
* @return string The raw violation message.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getMessageTemplate();
|
||||
|
||||
|
@ -67,8 +61,6 @@ interface ConstraintViolationInterface
|
|||
*
|
||||
* @see getMessageTemplate()
|
||||
*
|
||||
* @api
|
||||
*
|
||||
* @deprecated since version 2.7, to be replaced by getParameters() in 3.0.
|
||||
*/
|
||||
public function getMessageParameters();
|
||||
|
@ -100,8 +92,6 @@ interface ConstraintViolationInterface
|
|||
* the validation was started. Because the validator traverses
|
||||
* the object graph, the value at which the violation occurs
|
||||
* is not necessarily the value that was originally validated.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getRoot();
|
||||
|
||||
|
@ -116,8 +106,6 @@ interface ConstraintViolationInterface
|
|||
* path is "address.street". Property access is denoted by
|
||||
* dots, while array access is denoted by square brackets,
|
||||
* for example "addresses[1].street".
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getPropertyPath();
|
||||
|
||||
|
@ -126,8 +114,6 @@ interface ConstraintViolationInterface
|
|||
*
|
||||
* @return mixed The invalid value that caused the validated constraint to
|
||||
* fail.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getInvalidValue();
|
||||
|
||||
|
|
Reference in a new issue