diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6a13c7..eb08fe85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,129 +2,39 @@ All Notable changes to `League\Url` will be documented in this file -## Next - 2015-XX-XX +## 4.0.0 - 2015-09-23 ### Added - `Intl` extension is now required to use the library - `FileInfo` extension is now required to use the library - Domain parsing capabilities to `Host` using `jeremykendall/php-domain-parser` package -- A `UriParser` class to parse an URI according to RFC3986 rules, the library no longer depend on PHP `parse_url` function -- The `QueryParser` is now a standalone class to parse and build a query string according to RFC3986 rules. +- `UriParser` to parse an URI according to RFC3986 rules +- `QueryParser` to parse and build a query string according to RFC3986 rules. - `League\Uri\Schemes\Generic\AbstractUri` to enable better URI extension -- Modifiers classes to modify URI objects in an uniform way for interoperability +- URI Modifiers classes to modify URI objects in an uniform way for interoperability - A `Data` class to specifically manipulate `data` schemed URI - A `Http` class to specifically manipulate `http`,`https` schemed URI - A `Ftp` class to specifically manipulate `ftp` schemed URI - A `Ws` class to specifically manipulate `ws`, `wss` schemed URI - A `DataPath` component class to manipulate Data-uri path component - A `HierarchicalPath` to manipulate Hierarchical-like path component -- Support for IPv6 zone identifier -- Re-introduced `Host::toAscii` and adding `Host::isIdn` method -- API to add/remove the `Path` leading and trailing slash. -- `Query::ksort` method -- Missing `User` and `Pass` Interfaces -- `Host::getLiteral` to get the raw IP representation of a Ip Literal hostname -- `Path::relativize` to generate relative path +- Support for IP host ### Fixed - Move namespace from `League\Url` to `League\Uri` to avoid dependency hell -- Renamed methods for consistency with PHP naming conventions -- userinfo string representation `:` delimiter was added unnecessarily -- Host::__toString return the hostname in Unicode or ASCII depending on the user submission -- Host::toUnicode now returns a new Host instance -- Host now support append/prepend/replacing to or with IPv4 Host type -- `HierarchicalPath` now supports multiple leading slash -- Formatter::format accept `Uri`, PSR-7 `UriInterface` and `UriPart` implemented objects -- `Host` now iterate from the top-level label to the last subdomain (from right to left) -- The `Query::merge` method only accept `League\Uri\Interfaces\Query` objects or query string -- `Collection::filter` method can now use PHP's `array_filter` constants in PHP 5.6+ +- Uri components classes are fixed to comply to `RFC3986` +- Uri components classes are now all immutable value objects -### Remove - -- `Uri::isAbsolute` -- `Uri::sameValueAs` -- `Scheme::isSupported`, `Scheme::getStandardPort`, `Port::getStandardSchemes`. -- Support for `PHP 5.4` -- All partial modifier methods attached to an URI object are removed and replaced by URI Modifiers classes - -## 4.0.0-beta-3 - 2015-06-09 - -### Added - -- `isEmpty` method to `League\Url\Interfaces\Url` to tell whether a URL is empty or not -- `isSupported` static method to `League\Url\Scheme` to tell whether a specified scheme is supported by the library -- Improve decoding invalid punycode host labels -- Add support for `gopher` scheme - -## Fixed - -- Invalid Punycode should still be allowed and not produce any error [issue #73](https://github.com/thephpleague/url/issues/73) - -## 4.0.0-beta-2 - 2015-06-05 - -## Fixed -- remove useless optional argument from `Path::getUriComponent` - -## 4.0.0-beta-1 - 2015-06-03 - -### Added - -- Package structure is changed to better reflect the importance of each component. +### Deprecated -- `League\Url\Interfaces\Url` - - now implements `Psr\Http\Message\UriInterface` - - `resolve` to create new URL from relative URL - - add proxy methods to ease partial component modifications - -- `League\Url\Interfaces\UrlPart` - - UrlParts implementing object can be compared using the `sameValueAs` - -- `League\Url\Interfaces\Component` - - `modify` to create a new instance from a given component; - -- `League\Url\Interfaces\CollectionComponent`: - - The interface is simplified to remove ambiguity when manipulating Host and Path objects. - -- `League\Url\Interfaces\Host`: - - implements IPv4 and IPv6 style host - - `__toString` method now always return the ascii version of the hostname - -- `League\Url\Interfaces\Path`: - - `withoutDotSegment` remove dot segment according to RFC3986 rules; - - `withoutDuplicateDelimiters` remove multiple adjacent delimiters; - - `getBasename` returns the trailing path; - - manage the trailing path extension using `getExtension` and `withExtension`; - -- `League\Url\Interfaces\Query`: - - The interface is simplified to remove ambiguity and allow setting default values for missing keys; - - The object no longer depends on php `parse_str` - -- `League\Url\Interfaces\Scheme` and `League\Url\Interfaces\Port`: - - support for listing and detecting standard port for a given scheme in both objects with - - `Interfaces\Port::getStandardSchemes` - - `Interfaces\Port::useStandardScheme` - - `Interfaces\Scheme::getStandardPorts` - - `Interfaces\Scheme::hasStandardPort` - -- `League\Url\UserInfo` class added to better manipulate URL user info part - -- The `Url` class as well as all components classes are now immutable value objects. -- The `League\Url\Output\Formatter` class is added to ease Url formatting -- The package is more RFC3986 compliant - -### Deprecated - Nothing -### Fixed -- Handling of legacy hostname suffixed with a "." when using `Url::createFromServer` - ### Remove -- `League\Url\Components\User` and `League\Url\Components\Pass` -- Support for `PHP 5.3` -- `UrlImmutable` class -- Most of the public API is removed : - - to comply to `RFC3986`; - - to enable immutable value object; - - to implement `PSR7` UriInterface; + +- Support for `PHP 5.4` and `PHP 5.3` +- Dependency on PHP `parse_url`, `parse_str` and `http_build_query` functions +- Dependency on the `True/php-punycode` library +- `League\Url\Url`, `League\Url\UrlImmutable`, `League\Url\UrlConstants` classes +- Most of the public API is removed diff --git a/src/Components/AbstractComponent.php b/src/Components/AbstractComponent.php index 15151818..2e4eab55 100644 --- a/src/Components/AbstractComponent.php +++ b/src/Components/AbstractComponent.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/AbstractHierarchicalComponent.php b/src/Components/AbstractHierarchicalComponent.php index 0d0a04a6..722052b1 100644 --- a/src/Components/AbstractHierarchicalComponent.php +++ b/src/Components/AbstractHierarchicalComponent.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/DataPath.php b/src/Components/DataPath.php index c9a62c27..0ad74d97 100644 --- a/src/Components/DataPath.php +++ b/src/Components/DataPath.php @@ -3,7 +3,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Fragment.php b/src/Components/Fragment.php index 5e411a5f..17d24bdf 100644 --- a/src/Components/Fragment.php +++ b/src/Components/Fragment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/HierarchicalPath.php b/src/Components/HierarchicalPath.php index a9bc9aa7..93caaf28 100644 --- a/src/Components/HierarchicalPath.php +++ b/src/Components/HierarchicalPath.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Host.php b/src/Components/Host.php index 0d1f0024..241b691b 100644 --- a/src/Components/Host.php +++ b/src/Components/Host.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/HostIpTrait.php b/src/Components/HostIpTrait.php index b1f77196..e36eb121 100644 --- a/src/Components/HostIpTrait.php +++ b/src/Components/HostIpTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/HostnameInfoTrait.php b/src/Components/HostnameInfoTrait.php index 31a5c22d..b271eed4 100644 --- a/src/Components/HostnameInfoTrait.php +++ b/src/Components/HostnameInfoTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/HostnameTrait.php b/src/Components/HostnameTrait.php index fa982619..6e6d9c90 100644 --- a/src/Components/HostnameTrait.php +++ b/src/Components/HostnameTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Pass.php b/src/Components/Pass.php index f96be04e..2c34de74 100644 --- a/src/Components/Pass.php +++ b/src/Components/Pass.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Path.php b/src/Components/Path.php index 9955662c..9545bfa4 100644 --- a/src/Components/Path.php +++ b/src/Components/Path.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/PathTrait.php b/src/Components/PathTrait.php index 015adfc1..133ea813 100644 --- a/src/Components/PathTrait.php +++ b/src/Components/PathTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Port.php b/src/Components/Port.php index b7ad982f..760d149e 100644 --- a/src/Components/Port.php +++ b/src/Components/Port.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Query.php b/src/Components/Query.php index d61fd98d..1ba77cd4 100644 --- a/src/Components/Query.php +++ b/src/Components/Query.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/Scheme.php b/src/Components/Scheme.php index 1d95acd8..767b69b9 100644 --- a/src/Components/Scheme.php +++ b/src/Components/Scheme.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/User.php b/src/Components/User.php index 555c6fd4..b6a44455 100644 --- a/src/Components/User.php +++ b/src/Components/User.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Components/UserInfo.php b/src/Components/UserInfo.php index ad347c39..d04faf4d 100644 --- a/src/Components/UserInfo.php +++ b/src/Components/UserInfo.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Formatter.php b/src/Formatter.php index 45a71304..13c98495 100644 --- a/src/Formatter.php +++ b/src/Formatter.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Collection.php b/src/Interfaces/Collection.php index 8ddcb847..02194de1 100644 --- a/src/Interfaces/Collection.php +++ b/src/Interfaces/Collection.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Component.php b/src/Interfaces/Component.php index 95a6c88d..97281602 100644 --- a/src/Interfaces/Component.php +++ b/src/Interfaces/Component.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/DataPath.php b/src/Interfaces/DataPath.php index 4580471c..d50e2799 100644 --- a/src/Interfaces/DataPath.php +++ b/src/Interfaces/DataPath.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Fragment.php b/src/Interfaces/Fragment.php index 4ea864fa..8dfcf51a 100644 --- a/src/Interfaces/Fragment.php +++ b/src/Interfaces/Fragment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/HierarchicalComponent.php b/src/Interfaces/HierarchicalComponent.php index a0c59861..ef35437f 100644 --- a/src/Interfaces/HierarchicalComponent.php +++ b/src/Interfaces/HierarchicalComponent.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/HierarchicalPath.php b/src/Interfaces/HierarchicalPath.php index b69b6876..028a5c00 100644 --- a/src/Interfaces/HierarchicalPath.php +++ b/src/Interfaces/HierarchicalPath.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Host.php b/src/Interfaces/Host.php index c5f6cd96..2e7599aa 100644 --- a/src/Interfaces/Host.php +++ b/src/Interfaces/Host.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Pass.php b/src/Interfaces/Pass.php index 89c64677..1a38b0e1 100644 --- a/src/Interfaces/Pass.php +++ b/src/Interfaces/Pass.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Path.php b/src/Interfaces/Path.php index 31c0ccc4..c500af03 100644 --- a/src/Interfaces/Path.php +++ b/src/Interfaces/Path.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Port.php b/src/Interfaces/Port.php index bd671edd..7cd9c6cb 100644 --- a/src/Interfaces/Port.php +++ b/src/Interfaces/Port.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Query.php b/src/Interfaces/Query.php index 7f3f6b58..14935d36 100644 --- a/src/Interfaces/Query.php +++ b/src/Interfaces/Query.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Scheme.php b/src/Interfaces/Scheme.php index a45072c1..6315b202 100644 --- a/src/Interfaces/Scheme.php +++ b/src/Interfaces/Scheme.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/Uri.php b/src/Interfaces/Uri.php index 395ab49f..ccd12c62 100644 --- a/src/Interfaces/Uri.php +++ b/src/Interfaces/Uri.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/UriPart.php b/src/Interfaces/UriPart.php index 0b33a7fc..f42274bc 100644 --- a/src/Interfaces/UriPart.php +++ b/src/Interfaces/UriPart.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/User.php b/src/Interfaces/User.php index 5f4754e2..0e330624 100644 --- a/src/Interfaces/User.php +++ b/src/Interfaces/User.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Interfaces/UserInfo.php b/src/Interfaces/UserInfo.php index 9bb27a37..0fefc53a 100644 --- a/src/Interfaces/UserInfo.php +++ b/src/Interfaces/UserInfo.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AbstractHostModifier.php b/src/Modifiers/AbstractHostModifier.php index c611e3f1..008beb34 100644 --- a/src/Modifiers/AbstractHostModifier.php +++ b/src/Modifiers/AbstractHostModifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AbstractPartialUriModifier.php b/src/Modifiers/AbstractPartialUriModifier.php index 22ae8b31..718253a9 100644 --- a/src/Modifiers/AbstractPartialUriModifier.php +++ b/src/Modifiers/AbstractPartialUriModifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AbstractPathModifier.php b/src/Modifiers/AbstractPathModifier.php index a2ab58c6..3938c52f 100644 --- a/src/Modifiers/AbstractPathModifier.php +++ b/src/Modifiers/AbstractPathModifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AbstractQueryModifier.php b/src/Modifiers/AbstractQueryModifier.php index 6978900d..719be3fd 100644 --- a/src/Modifiers/AbstractQueryModifier.php +++ b/src/Modifiers/AbstractQueryModifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AbstractUriModifier.php b/src/Modifiers/AbstractUriModifier.php index e79c0a2d..45dfd672 100644 --- a/src/Modifiers/AbstractUriModifier.php +++ b/src/Modifiers/AbstractUriModifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AddLeadingSlash.php b/src/Modifiers/AddLeadingSlash.php index 0163400d..ff72dbc0 100644 --- a/src/Modifiers/AddLeadingSlash.php +++ b/src/Modifiers/AddLeadingSlash.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AddTrailingSlash.php b/src/Modifiers/AddTrailingSlash.php index 4e57512e..46d39946 100644 --- a/src/Modifiers/AddTrailingSlash.php +++ b/src/Modifiers/AddTrailingSlash.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AppendLabel.php b/src/Modifiers/AppendLabel.php index a69acc87..ed3dabb8 100644 --- a/src/Modifiers/AppendLabel.php +++ b/src/Modifiers/AppendLabel.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/AppendSegment.php b/src/Modifiers/AppendSegment.php index eb5c2b3e..897f8738 100644 --- a/src/Modifiers/AppendSegment.php +++ b/src/Modifiers/AppendSegment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/DataUriParameters.php b/src/Modifiers/DataUriParameters.php index 50c7d7bf..2f682d56 100644 --- a/src/Modifiers/DataUriParameters.php +++ b/src/Modifiers/DataUriParameters.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/DataUriToAscii.php b/src/Modifiers/DataUriToAscii.php index e017c62f..858a9941 100644 --- a/src/Modifiers/DataUriToAscii.php +++ b/src/Modifiers/DataUriToAscii.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/DataUriToBinary.php b/src/Modifiers/DataUriToBinary.php index e7ed3adf..4f4a5244 100644 --- a/src/Modifiers/DataUriToBinary.php +++ b/src/Modifiers/DataUriToBinary.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Extension.php b/src/Modifiers/Extension.php index d0c24abf..21a744c4 100644 --- a/src/Modifiers/Extension.php +++ b/src/Modifiers/Extension.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/FilterLabels.php b/src/Modifiers/FilterLabels.php index ca674952..7c3f52af 100644 --- a/src/Modifiers/FilterLabels.php +++ b/src/Modifiers/FilterLabels.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/FilterQuery.php b/src/Modifiers/FilterQuery.php index 3e00ba26..7ad8fff6 100644 --- a/src/Modifiers/FilterQuery.php +++ b/src/Modifiers/FilterQuery.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/FilterSegments.php b/src/Modifiers/FilterSegments.php index a29f9929..3c9e249a 100644 --- a/src/Modifiers/FilterSegments.php +++ b/src/Modifiers/FilterSegments.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/FilterTrait.php b/src/Modifiers/Filters/FilterTrait.php index 220d03e0..6934c509 100644 --- a/src/Modifiers/Filters/FilterTrait.php +++ b/src/Modifiers/Filters/FilterTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Flag.php b/src/Modifiers/Filters/Flag.php index 40544195..b18d7080 100644 --- a/src/Modifiers/Filters/Flag.php +++ b/src/Modifiers/Filters/Flag.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/ForCallable.php b/src/Modifiers/Filters/ForCallable.php index d86d6797..3844dccc 100644 --- a/src/Modifiers/Filters/ForCallable.php +++ b/src/Modifiers/Filters/ForCallable.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Keys.php b/src/Modifiers/Filters/Keys.php index cb5aa5a5..0ba372ec 100644 --- a/src/Modifiers/Filters/Keys.php +++ b/src/Modifiers/Filters/Keys.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Label.php b/src/Modifiers/Filters/Label.php index 5e3ef432..4d0d6386 100644 --- a/src/Modifiers/Filters/Label.php +++ b/src/Modifiers/Filters/Label.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Offset.php b/src/Modifiers/Filters/Offset.php index 3c41d822..ff674e6f 100644 --- a/src/Modifiers/Filters/Offset.php +++ b/src/Modifiers/Filters/Offset.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/QueryString.php b/src/Modifiers/Filters/QueryString.php index 1ff8b375..e311f12c 100644 --- a/src/Modifiers/Filters/QueryString.php +++ b/src/Modifiers/Filters/QueryString.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Segment.php b/src/Modifiers/Filters/Segment.php index fb683f5b..5e9b12dd 100644 --- a/src/Modifiers/Filters/Segment.php +++ b/src/Modifiers/Filters/Segment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Filters/Uri.php b/src/Modifiers/Filters/Uri.php index 50a6fe4d..ed4180b3 100644 --- a/src/Modifiers/Filters/Uri.php +++ b/src/Modifiers/Filters/Uri.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/HostToAscii.php b/src/Modifiers/HostToAscii.php index a8326a88..10df406b 100644 --- a/src/Modifiers/HostToAscii.php +++ b/src/Modifiers/HostToAscii.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/HostToUnicode.php b/src/Modifiers/HostToUnicode.php index 86d1cc46..a49b11ec 100644 --- a/src/Modifiers/HostToUnicode.php +++ b/src/Modifiers/HostToUnicode.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/KsortQuery.php b/src/Modifiers/KsortQuery.php index 46feac59..e480e19f 100644 --- a/src/Modifiers/KsortQuery.php +++ b/src/Modifiers/KsortQuery.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/MergeQuery.php b/src/Modifiers/MergeQuery.php index a725651e..d52aaa54 100644 --- a/src/Modifiers/MergeQuery.php +++ b/src/Modifiers/MergeQuery.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Normalize.php b/src/Modifiers/Normalize.php index 070137e8..e2049681 100644 --- a/src/Modifiers/Normalize.php +++ b/src/Modifiers/Normalize.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Pipeline.php b/src/Modifiers/Pipeline.php index 4ced7ddc..8a1cf42f 100644 --- a/src/Modifiers/Pipeline.php +++ b/src/Modifiers/Pipeline.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/PrependLabel.php b/src/Modifiers/PrependLabel.php index 53145d5f..401a5b0d 100644 --- a/src/Modifiers/PrependLabel.php +++ b/src/Modifiers/PrependLabel.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/PrependSegment.php b/src/Modifiers/PrependSegment.php index a4ad9d40..1128912f 100644 --- a/src/Modifiers/PrependSegment.php +++ b/src/Modifiers/PrependSegment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveDotSegments.php b/src/Modifiers/RemoveDotSegments.php index a7acc9d8..bbc95f78 100644 --- a/src/Modifiers/RemoveDotSegments.php +++ b/src/Modifiers/RemoveDotSegments.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveEmptySegments.php b/src/Modifiers/RemoveEmptySegments.php index 5e853af9..377a60cc 100644 --- a/src/Modifiers/RemoveEmptySegments.php +++ b/src/Modifiers/RemoveEmptySegments.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveLabels.php b/src/Modifiers/RemoveLabels.php index 76cbdcb9..ecb2b585 100644 --- a/src/Modifiers/RemoveLabels.php +++ b/src/Modifiers/RemoveLabels.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveLeadingSlash.php b/src/Modifiers/RemoveLeadingSlash.php index af2e487f..42a3ca68 100644 --- a/src/Modifiers/RemoveLeadingSlash.php +++ b/src/Modifiers/RemoveLeadingSlash.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveQueryKeys.php b/src/Modifiers/RemoveQueryKeys.php index e6c758f4..8e445d3c 100644 --- a/src/Modifiers/RemoveQueryKeys.php +++ b/src/Modifiers/RemoveQueryKeys.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveSegments.php b/src/Modifiers/RemoveSegments.php index 95ae2689..8893b85d 100644 --- a/src/Modifiers/RemoveSegments.php +++ b/src/Modifiers/RemoveSegments.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveTrailingSlash.php b/src/Modifiers/RemoveTrailingSlash.php index 938e0cdc..b3d43910 100644 --- a/src/Modifiers/RemoveTrailingSlash.php +++ b/src/Modifiers/RemoveTrailingSlash.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/RemoveZoneIdentifier.php b/src/Modifiers/RemoveZoneIdentifier.php index a03022b4..f21a6011 100644 --- a/src/Modifiers/RemoveZoneIdentifier.php +++ b/src/Modifiers/RemoveZoneIdentifier.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/ReplaceLabel.php b/src/Modifiers/ReplaceLabel.php index ca541b1a..a365b38d 100644 --- a/src/Modifiers/ReplaceLabel.php +++ b/src/Modifiers/ReplaceLabel.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/ReplaceSegment.php b/src/Modifiers/ReplaceSegment.php index a8f8f59a..ae6f0528 100644 --- a/src/Modifiers/ReplaceSegment.php +++ b/src/Modifiers/ReplaceSegment.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Resolve.php b/src/Modifiers/Resolve.php index 8daeb32b..c8bbf2d2 100644 --- a/src/Modifiers/Resolve.php +++ b/src/Modifiers/Resolve.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Modifiers/Typecode.php b/src/Modifiers/Typecode.php index d75afe36..5940e79d 100644 --- a/src/Modifiers/Typecode.php +++ b/src/Modifiers/Typecode.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/QueryParser.php b/src/QueryParser.php index 4152718a..a834909b 100644 --- a/src/QueryParser.php +++ b/src/QueryParser.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Data.php b/src/Schemes/Data.php index dd84649d..3f866f50 100644 --- a/src/Schemes/Data.php +++ b/src/Schemes/Data.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Ftp.php b/src/Schemes/Ftp.php index f8529b66..3d00d0c8 100644 --- a/src/Schemes/Ftp.php +++ b/src/Schemes/Ftp.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Generic/AbstractHierarchicalUri.php b/src/Schemes/Generic/AbstractHierarchicalUri.php index 317a6cd5..93fd939e 100644 --- a/src/Schemes/Generic/AbstractHierarchicalUri.php +++ b/src/Schemes/Generic/AbstractHierarchicalUri.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Generic/AbstractUri.php b/src/Schemes/Generic/AbstractUri.php index 1a915bf2..5d7bdf05 100644 --- a/src/Schemes/Generic/AbstractUri.php +++ b/src/Schemes/Generic/AbstractUri.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Generic/AuthorityValidatorTrait.php b/src/Schemes/Generic/AuthorityValidatorTrait.php index f673c6e1..e854c745 100644 --- a/src/Schemes/Generic/AuthorityValidatorTrait.php +++ b/src/Schemes/Generic/AuthorityValidatorTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Generic/PathFormatterTrait.php b/src/Schemes/Generic/PathFormatterTrait.php index be0027d4..08b2bd08 100644 --- a/src/Schemes/Generic/PathFormatterTrait.php +++ b/src/Schemes/Generic/PathFormatterTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Http.php b/src/Schemes/Http.php index 3e4aee89..09001346 100644 --- a/src/Schemes/Http.php +++ b/src/Schemes/Http.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Schemes/Ws.php b/src/Schemes/Ws.php index 7426c11c..999fb3c2 100644 --- a/src/Schemes/Ws.php +++ b/src/Schemes/Ws.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Types/ImmutableCollectionTrait.php b/src/Types/ImmutableCollectionTrait.php index 491244a2..0ebe81a6 100644 --- a/src/Types/ImmutableCollectionTrait.php +++ b/src/Types/ImmutableCollectionTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Types/ImmutableComponentTrait.php b/src/Types/ImmutableComponentTrait.php index 2146e1ff..07245f57 100644 --- a/src/Types/ImmutableComponentTrait.php +++ b/src/Types/ImmutableComponentTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Types/ImmutablePropertyTrait.php b/src/Types/ImmutablePropertyTrait.php index 7eb448b3..3330973e 100644 --- a/src/Types/ImmutablePropertyTrait.php +++ b/src/Types/ImmutablePropertyTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/Types/ValidatorTrait.php b/src/Types/ValidatorTrait.php index 4ff2c793..8e7c53a1 100644 --- a/src/Types/ValidatorTrait.php +++ b/src/Types/ValidatorTrait.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) diff --git a/src/UriParser.php b/src/UriParser.php index 28a4c005..d30672f2 100644 --- a/src/UriParser.php +++ b/src/UriParser.php @@ -2,7 +2,7 @@ /** * League.Url (http://url.thephpleague.com) * - * @package League.uri + * @package League.url * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License)