-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update package dependencies - Update package settings - Bug fix Query::build see https://github.com/thephpleague/uri/issues/94
- Loading branch information
Showing
9 changed files
with
32 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
use Countable; | ||
use IteratorAggregate; | ||
use League\Uri\Components\Traits\PathInfo; | ||
use League\Uri\Interfaces\PathComponent; | ||
use League\Uri\Interfaces\Path as PathInterface; | ||
use Traversable; | ||
|
||
/** | ||
|
@@ -26,7 +26,7 @@ | |
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @since 1.0.0 | ||
*/ | ||
class HierarchicalPath extends HierarchicalComponent implements PathComponent, Countable, IteratorAggregate | ||
class HierarchicalPath extends HierarchicalComponent implements PathInterface, Countable, IteratorAggregate | ||
{ | ||
use PathInfo; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
namespace League\Uri\Components; | ||
|
||
use League\Uri\Components\Traits\PathInfo; | ||
use League\Uri\Interfaces\PathComponent; | ||
use League\Uri\Interfaces\Path as PathInterface; | ||
|
||
/** | ||
* Value object representing a URI path component. | ||
|
@@ -23,7 +23,7 @@ | |
* @author Ignace Nyamagana Butera <[email protected]> | ||
* @since 1.0.0 | ||
*/ | ||
class Path extends Component implements PathComponent | ||
class Path extends Component implements PathInterface | ||
{ | ||
use PathInfo; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters