8889841chome/clixcotz/fmi.clix.co.tz/vendor/theseer/tokenizer/src/NamespaceUri.php000064400000001123150536603650022730 0ustar00ensureValidUri($value); $this->value = $value; } public function asString(): string { return $this->value; } private function ensureValidUri($value): void { if (\strpos($value, ':') === false) { throw new NamespaceUriException( \sprintf("Namespace URI '%s' must contain at least one colon", $value) ); } } }