Compare commits

..

2 Commits

Author SHA1 Message Date
jay 44efed4bcb create Abstract class for Uri 2026-06-12 13:12:56 -04:00
jay ada82580a2 Merge origin/main into main
# Conflicts:
#	composer.json
2026-06-12 13:08:30 -04:00
3 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "potter/uri", "name": "potter/uri",
"description": "Potter Framework Uri Interface", "description": "Potter Framework Uri Implementation",
"type": "library", "type": "library",
"require": { "require": {
"php": "^8.5", "php": "^8.5",
+10
View File
@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Potter\Uri;
use \GuzzleHttp\Psr7\Uri as BaseUri;
abstract class AbstractUri extends BaseUri implements UriInterface
{ }
+1 -3
View File
@@ -4,7 +4,5 @@ declare(strict_types=1);
namespace Potter\Uri; namespace Potter\Uri;
use \GuzzleHttp\Psr7\Uri as BaseUri; class Uri extends AbstractUri
class Uri extends BaseUri implements UriInterface
{ } { }