[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @package s9e\TextFormatter 5 * @copyright Copyright (c) 2010-2022 The s9e authors 6 * @license http://www.opensource.org/licenses/mit-license.php The MIT License 7 */ 8 namespace s9e\TextFormatter\Configurator\Collections; 9 10 use s9e\TextFormatter\Configurator\Validators\TemplateParameterName; 11 12 class TemplateParameterCollection extends NormalizedCollection 13 { 14 /** 15 * Normalize a parameter name 16 * 17 * @param string $key 18 * @return string 19 */ 20 public function normalizeKey($key) 21 { 22 return TemplateParameterName::normalize($key); 23 } 24 25 /** 26 * Normalize a parameter value 27 * 28 * @param mixed $value 29 * @return string 30 */ 31 public function normalizeValue($value) 32 { 33 return (string) $value; 34 } 35 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |