![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-view/src/Helper/ |
<?php declare(strict_types=1); namespace Laminas\View\Helper; use Laminas\Escaper\Escaper; use Laminas\View\HtmlAttributesSet; /** * Helper for creating HtmlAttributesSet objects * * @final */ class HtmlAttributes extends AbstractHelper { use DeprecatedAbstractHelperHierarchyTrait; private Escaper $escaper; public function __construct(?Escaper $escaper = null) { $this->escaper = $escaper ?: new Escaper(); } /** * Returns a new HtmlAttributesSet object, optionally initializing it with * the provided value. * * @param iterable<string, scalar|array|null> $attributes */ public function __invoke(iterable $attributes = []): HtmlAttributesSet { return new HtmlAttributesSet( $this->escaper, $attributes ); } }