Copied!
<?php

namespace PHPFUI;

class DescriptionList extends \PHPFUI\HTML5Element
	{
	public function __construct()
		{
		parent::__construct('dl');
		}

	public function addItem(DescriptionItem $item) : static
		{
		parent::add($item);

		return $this;
		}
	}
© 2025 Bruce Wells
Search Namespaces \ Classes
Configuration