. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; use Fisharebest\Webtrees\Tree; use function e; /** * VERSION_NUMBER := {Size=1:15} * An identifier that represents the version level assigned to the associated product. It is * defined and changed by the creators of the product. */ class VersionNumber extends AbstractElement { protected const MAX_LENGTH = 15; /** * Display the value of this type of element. * * @param string $value * @param Tree $tree * * @return string */ public function value(string $value, Tree $tree): string { $canonical = $this->canonical($value); return '' . e($canonical) . ''; } }