芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/veewee/xml/src/Xml/Xmlns/Xmlns.php
xmlns = $xmlns; } /** * @psalm-pure */ public static function xmlns(): self { return new self('http://www.w3.org/2000/xmlns/'); } /** * @psalm-pure */ public static function xml(): self { return new self('http://www.w3.org/XML/1998/namespace'); } /** * @psalm-pure */ public static function xsi(): self { return new self('http://www.w3.org/2001/XMLSchema-instance'); } /** * @psalm-pure */ public static function phpXpath(): self { return new self('http://php.net/xpath'); } /** * @psalm-pure */ public static function load(string $namespace): self { return new self($namespace); } public function value(): string { return $this->xmlns; } public function matches(Xmlns $other): bool { return $this->value() === $other->value(); } }