PHP Класс Symfony\Component\Form\FormError

Автор: Bernhard Schussek ([email protected])
Наследование: implements Serializable
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$messageParameters array The parameters that should be substituted in the message template
$messagePluralization integer | null The value for error message pluralization
$messageTemplate string The template for the error message

Открытые методы

Метод Описание
__construct ( string $messageTemplate, array $messageParameters = [], integer | null $messagePluralization = null ) Constructor
getMessage ( ) : string Returns the error message
getMessageParameters ( ) : array Returns the parameters to be inserted in the message template
getMessagePluralization ( ) : integer | null Returns the value for error message pluralization.
getMessageTemplate ( ) : string Returns the error message template

Описание методов

__construct() публичный Метод

Any array key in $messageParameters will be used as a placeholder in $messageTemplate.
См. также: Symfony\Component\Translation\Translator
public __construct ( string $messageTemplate, array $messageParameters = [], integer | null $messagePluralization = null )
$messageTemplate string The template for the error message
$messageParameters array The parameters that should be substituted in the message template.
$messagePluralization integer | null The value for error message pluralization

getMessage() публичный Метод

Returns the error message
public getMessage ( ) : string
Результат string

getMessageParameters() публичный Метод

Returns the parameters to be inserted in the message template
public getMessageParameters ( ) : array
Результат array

getMessagePluralization() публичный Метод

Returns the value for error message pluralization.
public getMessagePluralization ( ) : integer | null
Результат integer | null

getMessageTemplate() публичный Метод

Returns the error message template
public getMessageTemplate ( ) : string
Результат string

Описание свойств

$messageParameters защищенное свойство

The parameters that should be substituted in the message template
protected array $messageParameters
Результат array

$messagePluralization защищенное свойство

The value for error message pluralization
protected int|null $messagePluralization
Результат integer | null

$messageTemplate защищенное свойство

The template for the error message
protected string $messageTemplate
Результат string