public static function factory(Utf8String $str) { return new self($str->toLowerCase()->trim()->valueOf()); }
/** * Factory method. This class should be instantiated * ONLY through this method * * @param Utf8String $Tags * * @internal param \Lampcms\of $object type Utf8string $Tags * @return object of this class */ public static function factory(Utf8String $Tags) { $str = $Tags->toLowerCase()->trim()->valueOf(); return new self($str); }