for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSchema\Type;
/**
* @package simplesaml/xml-common
*/
class NormalizedStringValue extends StringValue
{
/** @var string */
public const SCHEMA_TYPE = 'normalizedString';
* Sanitize the value.
*
* @param string $value The unsanitized value
* @return string
protected function sanitizeValue(string $value): string
return static::normalizeWhitespace($value);
}