From e41d6361221a30ca9d996cde7591111e626b7e1c Mon Sep 17 00:00:00 2001 From: supahgreg Date: Thu, 9 Oct 2025 02:49:56 +0000 Subject: Remove dev dependencies and update the rest. --- vendor/theseer/tokenizer/src/NamespaceUri.php | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 vendor/theseer/tokenizer/src/NamespaceUri.php (limited to 'vendor/theseer/tokenizer/src/NamespaceUri.php') diff --git a/vendor/theseer/tokenizer/src/NamespaceUri.php b/vendor/theseer/tokenizer/src/NamespaceUri.php deleted file mode 100644 index 14e9f0c8c..000000000 --- a/vendor/theseer/tokenizer/src/NamespaceUri.php +++ /dev/null @@ -1,25 +0,0 @@ -ensureValidUri($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) - ); - } - } -} -- cgit v1.2.3-54-g00ecf