Skip to content

Commit

Permalink
Normalize URI modifying class API
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Jul 20, 2023
1 parent 6dd50e2 commit 1db3cfa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Contracts/UriAccess.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

declare(strict_types=1);

namespace League\Uri\Contracts;

use Psr\Http\Message\UriInterface as Psr7UriInterface;

interface UriAccess
{
public function getUri(): UriInterface|Psr7UriInterface;
}

0 comments on commit 1db3cfa

Please sign in to comment.