From 6c9f3ab547c70773471eed2d4e9f31ceedd6b12a Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 16 Apr 2021 10:39:46 -0400 Subject: [PATCH] Fix documentation formatting issue in WireTextTools --- wire/core/WireTextTools.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wire/core/WireTextTools.php b/wire/core/WireTextTools.php index e372d9c2..51556cc2 100644 --- a/wire/core/WireTextTools.php +++ b/wire/core/WireTextTools.php @@ -925,11 +925,11 @@ class WireTextTools extends Wire { * @param WireData|object|array $vars Object or associative array to pull replacement values from. * @param array $options Array of optional changes to default behavior, including: * - `tagOpen` (string): The required opening tag character(s), default is '{' - * - `tagClose` (string): The optional closing tag character(s), default is '}' - * - `recursive` (bool): If replacement value contains tags, populate those too? (default=false) - * - `removeNullTags` (bool): If a tag resolves to a NULL, remove it? If false, tag will remain. (default=true) - * - `entityEncode` (bool): Entity encode the values pulled from $vars? (default=false) - * - `entityDecode` (bool): Entity decode the values pulled from $vars? (default=false) + * - `tagClose` (string): The optional closing tag character(s), default is '}' + * - `recursive` (bool): If replacement value contains tags, populate those too? (default=false) + * - `removeNullTags` (bool): If a tag resolves to a NULL, remove it? If false, tag will remain. (default=true) + * - `entityEncode` (bool): Entity encode the values pulled from $vars? (default=false) + * - `entityDecode` (bool): Entity decode the values pulled from $vars? (default=false) * - `allowMarkup` (bool): Allow markup to appear in populated variables? (default=true) * @return string String with tags populated. * @since 3.0.126 Use wirePopulateStringTags() function for older versions