Compare commits
2 Commits
8200ee5d71
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 44efed4bcb | |||
| ada82580a2 |
+1
-1
@@ -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",
|
||||||
|
|||||||
@@ -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
|
||||||
|
{ }
|
||||||
@@ -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
|
|
||||||
{ }
|
{ }
|
||||||
|
|||||||
Reference in New Issue
Block a user