. namespace core\attribute; /** * An unstranslated string attribute used to label an object. * * @package core * @copyright 2024 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ #[\Attribute] class label { public function __construct( public readonly string $label, ) { } }