escaper = $escaper ?: new Escaper(); } /** * Returns a new HtmlAttributesSet object, optionally initializing it with * the provided value. * * @param iterable $attributes */ public function __invoke(iterable $attributes = []): HtmlAttributesSet { return new HtmlAttributesSet( $this->escaper, $attributes ); } }