From 274ffc5a3999a623b6c361051472815da04f2627 Mon Sep 17 00:00:00 2001 From: Ilya Antipenko Date: Thu, 19 Jan 2017 14:04:23 +0200 Subject: [PATCH] Unify placeholders in documentation and code --- validation/custom_constraint.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/validation/custom_constraint.rst b/validation/custom_constraint.rst index 16ffb756a52..0d5660fb62e 100644 --- a/validation/custom_constraint.rst +++ b/validation/custom_constraint.rst @@ -24,7 +24,7 @@ First you need to create a Constraint class and extend :class:`Symfony\\Componen */ class ContainsAlphanumeric extends Constraint { - public $message = 'The string "%string%" contains an illegal character: it can only contain letters or numbers.'; + public $message = 'The string "{{ string }}" contains an illegal character: it can only contain letters or numbers.'; } .. note:: @@ -67,14 +67,14 @@ The validator class is also simple, and only has one required method ``validate( if (!preg_match('/^[a-zA-Z0-9]+$/', $value, $matches)) { // If you're using the new 2.5 validation API (you probably are!) $this->context->buildViolation($constraint->message) - ->setParameter('%string%', $value) + ->setParameter('{{ string }}', $value) ->addViolation(); // If you're using the old 2.4 validation API /* $this->context->addViolation( $constraint->message, - array('%string%' => $value) + array('{{ string }}' => $value) ); */ } pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy