From d7f082d3532d8c648427ce2c486d4db4ae604278 Mon Sep 17 00:00:00 2001 From: nyamsprod Date: Thu, 24 Nov 2016 12:59:59 +0100 Subject: [PATCH] prepare 4.2.1 release --- CHANGELOG.md | 2 +- src/Components/AbstractComponent.php | 2 +- src/Components/AbstractHierarchicalComponent.php | 2 +- src/Components/DataPath.php | 2 +- src/Components/Fragment.php | 2 +- src/Components/HierarchicalPath.php | 2 +- src/Components/Host.php | 2 +- src/Components/HostIpTrait.php | 2 +- src/Components/HostnameInfoTrait.php | 2 +- src/Components/HostnameTrait.php | 2 +- src/Components/Pass.php | 2 +- src/Components/Path.php | 2 +- src/Components/PathTrait.php | 2 +- src/Components/Port.php | 2 +- src/Components/Query.php | 2 +- src/Components/Scheme.php | 2 +- src/Components/User.php | 2 +- src/Components/UserInfo.php | 2 +- src/Formatter.php | 2 +- src/Interfaces/Collection.php | 2 +- src/Interfaces/Component.php | 2 +- src/Interfaces/DataPath.php | 2 +- src/Interfaces/Fragment.php | 2 +- src/Interfaces/HierarchicalComponent.php | 2 +- src/Interfaces/HierarchicalPath.php | 2 +- src/Interfaces/Host.php | 2 +- src/Interfaces/Pass.php | 2 +- src/Interfaces/Path.php | 2 +- src/Interfaces/Port.php | 2 +- src/Interfaces/Query.php | 2 +- src/Interfaces/Scheme.php | 2 +- src/Interfaces/Uri.php | 2 +- src/Interfaces/UriPart.php | 2 +- src/Interfaces/User.php | 2 +- src/Interfaces/UserInfo.php | 2 +- src/Modifiers/AbstractHostModifier.php | 2 +- src/Modifiers/AbstractPartialUriModifier.php | 2 +- src/Modifiers/AbstractPathModifier.php | 2 +- src/Modifiers/AbstractQueryModifier.php | 2 +- src/Modifiers/AbstractUriModifier.php | 2 +- src/Modifiers/AddLeadingSlash.php | 2 +- src/Modifiers/AddTrailingSlash.php | 2 +- src/Modifiers/AppendLabel.php | 2 +- src/Modifiers/AppendSegment.php | 2 +- src/Modifiers/DataUriParameters.php | 2 +- src/Modifiers/DataUriToAscii.php | 2 +- src/Modifiers/DataUriToBinary.php | 2 +- src/Modifiers/DecodeUnreservedCharacters.php | 2 +- src/Modifiers/Extension.php | 2 +- src/Modifiers/FilterLabels.php | 2 +- src/Modifiers/FilterQuery.php | 2 +- src/Modifiers/FilterSegments.php | 2 +- src/Modifiers/Filters/FilterTrait.php | 2 +- src/Modifiers/Filters/Flag.php | 2 +- src/Modifiers/Filters/ForCallable.php | 2 +- src/Modifiers/Filters/Keys.php | 2 +- src/Modifiers/Filters/Label.php | 2 +- src/Modifiers/Filters/Offset.php | 2 +- src/Modifiers/Filters/QueryString.php | 2 +- src/Modifiers/Filters/Segment.php | 2 +- src/Modifiers/Filters/Uri.php | 2 +- src/Modifiers/HostToAscii.php | 2 +- src/Modifiers/HostToUnicode.php | 2 +- src/Modifiers/KsortQuery.php | 2 +- src/Modifiers/MergeQuery.php | 2 +- src/Modifiers/Normalize.php | 2 +- src/Modifiers/Pipeline.php | 2 +- src/Modifiers/PrependLabel.php | 2 +- src/Modifiers/PrependSegment.php | 2 +- src/Modifiers/Relativize.php | 2 +- src/Modifiers/RemoveDotSegments.php | 2 +- src/Modifiers/RemoveEmptySegments.php | 2 +- src/Modifiers/RemoveLabels.php | 2 +- src/Modifiers/RemoveLeadingSlash.php | 2 +- src/Modifiers/RemoveQueryKeys.php | 2 +- src/Modifiers/RemoveSegments.php | 2 +- src/Modifiers/RemoveTrailingSlash.php | 2 +- src/Modifiers/RemoveZoneIdentifier.php | 2 +- src/Modifiers/ReplaceLabel.php | 2 +- src/Modifiers/ReplaceSegment.php | 2 +- src/Modifiers/Resolve.php | 2 +- src/Modifiers/Typecode.php | 2 +- src/Modifiers/functions.php | 2 +- src/QueryParser.php | 2 +- src/Schemes/Data.php | 2 +- src/Schemes/Ftp.php | 2 +- src/Schemes/Generic/AbstractHierarchicalUri.php | 2 +- src/Schemes/Generic/AbstractUri.php | 2 +- src/Schemes/Generic/UriBuilderTrait.php | 2 +- src/Schemes/Http.php | 2 +- src/Schemes/Ws.php | 2 +- src/Types/ImmutableCollectionTrait.php | 2 +- src/Types/ImmutableComponentTrait.php | 2 +- src/Types/ImmutablePropertyTrait.php | 2 +- src/Types/TranscoderTrait.php | 2 +- src/Types/ValidatorTrait.php | 2 +- src/UriParser.php | 2 +- 97 files changed, 97 insertions(+), 97 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0ac12511..fc45e49cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All Notable changes to `League\Uri` will be documented in this file -## Next - 2016-11-xx +## 4.2.1 - 2016-11-24 ### Added diff --git a/src/Components/AbstractComponent.php b/src/Components/AbstractComponent.php index 027e727b1..bf05e4795 100644 --- a/src/Components/AbstractComponent.php +++ b/src/Components/AbstractComponent.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/AbstractHierarchicalComponent.php b/src/Components/AbstractHierarchicalComponent.php index 90c7f4831..652d561cb 100644 --- a/src/Components/AbstractHierarchicalComponent.php +++ b/src/Components/AbstractHierarchicalComponent.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/DataPath.php b/src/Components/DataPath.php index 4a4b0bf2d..430c9c7aa 100644 --- a/src/Components/DataPath.php +++ b/src/Components/DataPath.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Fragment.php b/src/Components/Fragment.php index f1d27a573..4e04f1f40 100644 --- a/src/Components/Fragment.php +++ b/src/Components/Fragment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/HierarchicalPath.php b/src/Components/HierarchicalPath.php index ef92b4090..58c1b343f 100644 --- a/src/Components/HierarchicalPath.php +++ b/src/Components/HierarchicalPath.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Host.php b/src/Components/Host.php index 5c07a9e4a..04bd341bd 100644 --- a/src/Components/Host.php +++ b/src/Components/Host.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/HostIpTrait.php b/src/Components/HostIpTrait.php index 122479de5..21970d752 100644 --- a/src/Components/HostIpTrait.php +++ b/src/Components/HostIpTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/HostnameInfoTrait.php b/src/Components/HostnameInfoTrait.php index c9108631b..79d9fdf0b 100644 --- a/src/Components/HostnameInfoTrait.php +++ b/src/Components/HostnameInfoTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/HostnameTrait.php b/src/Components/HostnameTrait.php index 224899b1d..6e1c6b986 100644 --- a/src/Components/HostnameTrait.php +++ b/src/Components/HostnameTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Pass.php b/src/Components/Pass.php index 0e1c4d697..85bed1a78 100644 --- a/src/Components/Pass.php +++ b/src/Components/Pass.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Path.php b/src/Components/Path.php index b3334e815..ec8c63861 100644 --- a/src/Components/Path.php +++ b/src/Components/Path.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/PathTrait.php b/src/Components/PathTrait.php index b93f457a7..a64379621 100644 --- a/src/Components/PathTrait.php +++ b/src/Components/PathTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Port.php b/src/Components/Port.php index 44c53865d..f2cb1d9a7 100644 --- a/src/Components/Port.php +++ b/src/Components/Port.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Query.php b/src/Components/Query.php index f2e3280d6..46668e299 100644 --- a/src/Components/Query.php +++ b/src/Components/Query.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/Scheme.php b/src/Components/Scheme.php index ffdd2fcc5..5100673b0 100644 --- a/src/Components/Scheme.php +++ b/src/Components/Scheme.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/User.php b/src/Components/User.php index ca964ee6f..58548e05f 100644 --- a/src/Components/User.php +++ b/src/Components/User.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Components/UserInfo.php b/src/Components/UserInfo.php index 1caed7297..1712fa024 100644 --- a/src/Components/UserInfo.php +++ b/src/Components/UserInfo.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Components; diff --git a/src/Formatter.php b/src/Formatter.php index aac3f6b78..a4c5195be 100644 --- a/src/Formatter.php +++ b/src/Formatter.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri; diff --git a/src/Interfaces/Collection.php b/src/Interfaces/Collection.php index d2570990b..d9a63eb06 100644 --- a/src/Interfaces/Collection.php +++ b/src/Interfaces/Collection.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Component.php b/src/Interfaces/Component.php index 23d9dd480..6cbf08374 100644 --- a/src/Interfaces/Component.php +++ b/src/Interfaces/Component.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/DataPath.php b/src/Interfaces/DataPath.php index 7c7f2822c..4153d6005 100644 --- a/src/Interfaces/DataPath.php +++ b/src/Interfaces/DataPath.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Fragment.php b/src/Interfaces/Fragment.php index 8c6a540d3..d4402af59 100644 --- a/src/Interfaces/Fragment.php +++ b/src/Interfaces/Fragment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/HierarchicalComponent.php b/src/Interfaces/HierarchicalComponent.php index f2b415f01..b14bc6b41 100644 --- a/src/Interfaces/HierarchicalComponent.php +++ b/src/Interfaces/HierarchicalComponent.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/HierarchicalPath.php b/src/Interfaces/HierarchicalPath.php index 9bcee6b26..74efea3f0 100644 --- a/src/Interfaces/HierarchicalPath.php +++ b/src/Interfaces/HierarchicalPath.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Host.php b/src/Interfaces/Host.php index ca4ef7067..8b2d0c7d8 100644 --- a/src/Interfaces/Host.php +++ b/src/Interfaces/Host.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Pass.php b/src/Interfaces/Pass.php index 3cb272ccb..36772b204 100644 --- a/src/Interfaces/Pass.php +++ b/src/Interfaces/Pass.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Path.php b/src/Interfaces/Path.php index 97fee11bc..698abb4a2 100644 --- a/src/Interfaces/Path.php +++ b/src/Interfaces/Path.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Port.php b/src/Interfaces/Port.php index 391762957..64a03de18 100644 --- a/src/Interfaces/Port.php +++ b/src/Interfaces/Port.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Query.php b/src/Interfaces/Query.php index cd5f465b7..2c0eec0f4 100644 --- a/src/Interfaces/Query.php +++ b/src/Interfaces/Query.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Scheme.php b/src/Interfaces/Scheme.php index 33b685194..8db0cff0f 100644 --- a/src/Interfaces/Scheme.php +++ b/src/Interfaces/Scheme.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/Uri.php b/src/Interfaces/Uri.php index cdb39237d..fda0c3a37 100644 --- a/src/Interfaces/Uri.php +++ b/src/Interfaces/Uri.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/UriPart.php b/src/Interfaces/UriPart.php index 06042020f..54270272b 100644 --- a/src/Interfaces/UriPart.php +++ b/src/Interfaces/UriPart.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/User.php b/src/Interfaces/User.php index 325fc8afb..89a4e7747 100644 --- a/src/Interfaces/User.php +++ b/src/Interfaces/User.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Interfaces/UserInfo.php b/src/Interfaces/UserInfo.php index 339fd6a92..a6fcc0ff9 100644 --- a/src/Interfaces/UserInfo.php +++ b/src/Interfaces/UserInfo.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Interfaces; diff --git a/src/Modifiers/AbstractHostModifier.php b/src/Modifiers/AbstractHostModifier.php index a29649952..810a01a42 100644 --- a/src/Modifiers/AbstractHostModifier.php +++ b/src/Modifiers/AbstractHostModifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AbstractPartialUriModifier.php b/src/Modifiers/AbstractPartialUriModifier.php index de2bbb895..26b8849ff 100644 --- a/src/Modifiers/AbstractPartialUriModifier.php +++ b/src/Modifiers/AbstractPartialUriModifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AbstractPathModifier.php b/src/Modifiers/AbstractPathModifier.php index 1d26a1a9c..92d35f02f 100644 --- a/src/Modifiers/AbstractPathModifier.php +++ b/src/Modifiers/AbstractPathModifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AbstractQueryModifier.php b/src/Modifiers/AbstractQueryModifier.php index 4e00a2c4e..b9e336c19 100644 --- a/src/Modifiers/AbstractQueryModifier.php +++ b/src/Modifiers/AbstractQueryModifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AbstractUriModifier.php b/src/Modifiers/AbstractUriModifier.php index 3874c13d5..613b15afb 100644 --- a/src/Modifiers/AbstractUriModifier.php +++ b/src/Modifiers/AbstractUriModifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AddLeadingSlash.php b/src/Modifiers/AddLeadingSlash.php index e1af09f15..c22aa4224 100644 --- a/src/Modifiers/AddLeadingSlash.php +++ b/src/Modifiers/AddLeadingSlash.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AddTrailingSlash.php b/src/Modifiers/AddTrailingSlash.php index bdc5e6672..9e8dbbd36 100644 --- a/src/Modifiers/AddTrailingSlash.php +++ b/src/Modifiers/AddTrailingSlash.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AppendLabel.php b/src/Modifiers/AppendLabel.php index fe8818c49..bb8e0bd54 100644 --- a/src/Modifiers/AppendLabel.php +++ b/src/Modifiers/AppendLabel.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/AppendSegment.php b/src/Modifiers/AppendSegment.php index a4b8313a7..eee612a84 100644 --- a/src/Modifiers/AppendSegment.php +++ b/src/Modifiers/AppendSegment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/DataUriParameters.php b/src/Modifiers/DataUriParameters.php index e54ed335e..f02a15771 100644 --- a/src/Modifiers/DataUriParameters.php +++ b/src/Modifiers/DataUriParameters.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/DataUriToAscii.php b/src/Modifiers/DataUriToAscii.php index ef5da617b..abc2c5ba1 100644 --- a/src/Modifiers/DataUriToAscii.php +++ b/src/Modifiers/DataUriToAscii.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/DataUriToBinary.php b/src/Modifiers/DataUriToBinary.php index 4abf37daf..39f1d2915 100644 --- a/src/Modifiers/DataUriToBinary.php +++ b/src/Modifiers/DataUriToBinary.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/DecodeUnreservedCharacters.php b/src/Modifiers/DecodeUnreservedCharacters.php index fa8e48df0..e0ed169e3 100644 --- a/src/Modifiers/DecodeUnreservedCharacters.php +++ b/src/Modifiers/DecodeUnreservedCharacters.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Extension.php b/src/Modifiers/Extension.php index b1fb82b2e..2fdedc2cd 100644 --- a/src/Modifiers/Extension.php +++ b/src/Modifiers/Extension.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/FilterLabels.php b/src/Modifiers/FilterLabels.php index fcbc646b9..cbc095eaf 100644 --- a/src/Modifiers/FilterLabels.php +++ b/src/Modifiers/FilterLabels.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/FilterQuery.php b/src/Modifiers/FilterQuery.php index 26552b00c..449e53d08 100644 --- a/src/Modifiers/FilterQuery.php +++ b/src/Modifiers/FilterQuery.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/FilterSegments.php b/src/Modifiers/FilterSegments.php index fa46b3e87..c85f4895d 100644 --- a/src/Modifiers/FilterSegments.php +++ b/src/Modifiers/FilterSegments.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Filters/FilterTrait.php b/src/Modifiers/Filters/FilterTrait.php index c766f9fab..d59366bc4 100644 --- a/src/Modifiers/Filters/FilterTrait.php +++ b/src/Modifiers/Filters/FilterTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Flag.php b/src/Modifiers/Filters/Flag.php index bb38718e6..5555b66e4 100644 --- a/src/Modifiers/Filters/Flag.php +++ b/src/Modifiers/Filters/Flag.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/ForCallable.php b/src/Modifiers/Filters/ForCallable.php index 97ae72203..4876dec60 100644 --- a/src/Modifiers/Filters/ForCallable.php +++ b/src/Modifiers/Filters/ForCallable.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Keys.php b/src/Modifiers/Filters/Keys.php index 04192ef32..6aa49c3d2 100644 --- a/src/Modifiers/Filters/Keys.php +++ b/src/Modifiers/Filters/Keys.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Label.php b/src/Modifiers/Filters/Label.php index da3e4c0b8..b76784db1 100644 --- a/src/Modifiers/Filters/Label.php +++ b/src/Modifiers/Filters/Label.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Offset.php b/src/Modifiers/Filters/Offset.php index b95c1660b..a36fcc82e 100644 --- a/src/Modifiers/Filters/Offset.php +++ b/src/Modifiers/Filters/Offset.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/QueryString.php b/src/Modifiers/Filters/QueryString.php index 56ccf9300..6c1cb28a0 100644 --- a/src/Modifiers/Filters/QueryString.php +++ b/src/Modifiers/Filters/QueryString.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Segment.php b/src/Modifiers/Filters/Segment.php index b72a7f725..e2a7161d5 100644 --- a/src/Modifiers/Filters/Segment.php +++ b/src/Modifiers/Filters/Segment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/Filters/Uri.php b/src/Modifiers/Filters/Uri.php index 17371890c..4945c9a74 100644 --- a/src/Modifiers/Filters/Uri.php +++ b/src/Modifiers/Filters/Uri.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers\Filters; diff --git a/src/Modifiers/HostToAscii.php b/src/Modifiers/HostToAscii.php index 0bf2e9c6b..71f6ad4ab 100644 --- a/src/Modifiers/HostToAscii.php +++ b/src/Modifiers/HostToAscii.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/HostToUnicode.php b/src/Modifiers/HostToUnicode.php index de4c3a417..143af65c4 100644 --- a/src/Modifiers/HostToUnicode.php +++ b/src/Modifiers/HostToUnicode.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/KsortQuery.php b/src/Modifiers/KsortQuery.php index 01026fb96..270de3977 100644 --- a/src/Modifiers/KsortQuery.php +++ b/src/Modifiers/KsortQuery.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/MergeQuery.php b/src/Modifiers/MergeQuery.php index c83623da7..7d4e457c8 100644 --- a/src/Modifiers/MergeQuery.php +++ b/src/Modifiers/MergeQuery.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Normalize.php b/src/Modifiers/Normalize.php index 681d3413a..1f0ad7179 100644 --- a/src/Modifiers/Normalize.php +++ b/src/Modifiers/Normalize.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Pipeline.php b/src/Modifiers/Pipeline.php index 734c74bde..3ea43e932 100644 --- a/src/Modifiers/Pipeline.php +++ b/src/Modifiers/Pipeline.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/PrependLabel.php b/src/Modifiers/PrependLabel.php index 60cc110b2..1b8378b27 100644 --- a/src/Modifiers/PrependLabel.php +++ b/src/Modifiers/PrependLabel.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/PrependSegment.php b/src/Modifiers/PrependSegment.php index 30e75f6f5..c204f1428 100644 --- a/src/Modifiers/PrependSegment.php +++ b/src/Modifiers/PrependSegment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Relativize.php b/src/Modifiers/Relativize.php index 374f16fba..c1734b1f2 100644 --- a/src/Modifiers/Relativize.php +++ b/src/Modifiers/Relativize.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveDotSegments.php b/src/Modifiers/RemoveDotSegments.php index f2d3a3311..4a01ad581 100644 --- a/src/Modifiers/RemoveDotSegments.php +++ b/src/Modifiers/RemoveDotSegments.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveEmptySegments.php b/src/Modifiers/RemoveEmptySegments.php index 07163e25d..1538a9647 100644 --- a/src/Modifiers/RemoveEmptySegments.php +++ b/src/Modifiers/RemoveEmptySegments.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveLabels.php b/src/Modifiers/RemoveLabels.php index 5947312c4..dc4ef9df9 100644 --- a/src/Modifiers/RemoveLabels.php +++ b/src/Modifiers/RemoveLabels.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveLeadingSlash.php b/src/Modifiers/RemoveLeadingSlash.php index 6e965e7b2..4e6bc2283 100644 --- a/src/Modifiers/RemoveLeadingSlash.php +++ b/src/Modifiers/RemoveLeadingSlash.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveQueryKeys.php b/src/Modifiers/RemoveQueryKeys.php index cdbb5bd3c..a9b0be554 100644 --- a/src/Modifiers/RemoveQueryKeys.php +++ b/src/Modifiers/RemoveQueryKeys.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveSegments.php b/src/Modifiers/RemoveSegments.php index 9d2c4c85a..77f6b1bb4 100644 --- a/src/Modifiers/RemoveSegments.php +++ b/src/Modifiers/RemoveSegments.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveTrailingSlash.php b/src/Modifiers/RemoveTrailingSlash.php index ba3e8274e..d910a45ea 100644 --- a/src/Modifiers/RemoveTrailingSlash.php +++ b/src/Modifiers/RemoveTrailingSlash.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/RemoveZoneIdentifier.php b/src/Modifiers/RemoveZoneIdentifier.php index 05653231a..de48f5ccb 100644 --- a/src/Modifiers/RemoveZoneIdentifier.php +++ b/src/Modifiers/RemoveZoneIdentifier.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/ReplaceLabel.php b/src/Modifiers/ReplaceLabel.php index 2967e3ca3..a959fa02c 100644 --- a/src/Modifiers/ReplaceLabel.php +++ b/src/Modifiers/ReplaceLabel.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/ReplaceSegment.php b/src/Modifiers/ReplaceSegment.php index a8c6486cb..d58594139 100644 --- a/src/Modifiers/ReplaceSegment.php +++ b/src/Modifiers/ReplaceSegment.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Resolve.php b/src/Modifiers/Resolve.php index 3e70726c3..b076fe87e 100644 --- a/src/Modifiers/Resolve.php +++ b/src/Modifiers/Resolve.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/Typecode.php b/src/Modifiers/Typecode.php index 6c3009517..109cf8dbe 100644 --- a/src/Modifiers/Typecode.php +++ b/src/Modifiers/Typecode.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/Modifiers/functions.php b/src/Modifiers/functions.php index 32c06be11..a867dc5db 100644 --- a/src/Modifiers/functions.php +++ b/src/Modifiers/functions.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Modifiers; diff --git a/src/QueryParser.php b/src/QueryParser.php index 7f1a45832..b70291e3f 100644 --- a/src/QueryParser.php +++ b/src/QueryParser.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri; diff --git a/src/Schemes/Data.php b/src/Schemes/Data.php index 8394b2cd4..dcf5d4487 100644 --- a/src/Schemes/Data.php +++ b/src/Schemes/Data.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes; diff --git a/src/Schemes/Ftp.php b/src/Schemes/Ftp.php index 3a0abcc05..873f5f4d8 100644 --- a/src/Schemes/Ftp.php +++ b/src/Schemes/Ftp.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes; diff --git a/src/Schemes/Generic/AbstractHierarchicalUri.php b/src/Schemes/Generic/AbstractHierarchicalUri.php index f0bdf02d6..1e015a9fe 100644 --- a/src/Schemes/Generic/AbstractHierarchicalUri.php +++ b/src/Schemes/Generic/AbstractHierarchicalUri.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes\Generic; diff --git a/src/Schemes/Generic/AbstractUri.php b/src/Schemes/Generic/AbstractUri.php index d50559b76..1f70f833d 100644 --- a/src/Schemes/Generic/AbstractUri.php +++ b/src/Schemes/Generic/AbstractUri.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes\Generic; diff --git a/src/Schemes/Generic/UriBuilderTrait.php b/src/Schemes/Generic/UriBuilderTrait.php index 30d90587d..89184f93f 100644 --- a/src/Schemes/Generic/UriBuilderTrait.php +++ b/src/Schemes/Generic/UriBuilderTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes\Generic; diff --git a/src/Schemes/Http.php b/src/Schemes/Http.php index e30add2ef..d9ed0d91c 100644 --- a/src/Schemes/Http.php +++ b/src/Schemes/Http.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes; diff --git a/src/Schemes/Ws.php b/src/Schemes/Ws.php index dc6649709..77cc1f304 100644 --- a/src/Schemes/Ws.php +++ b/src/Schemes/Ws.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Schemes; diff --git a/src/Types/ImmutableCollectionTrait.php b/src/Types/ImmutableCollectionTrait.php index 92ca2a3c0..c72a5a0ae 100644 --- a/src/Types/ImmutableCollectionTrait.php +++ b/src/Types/ImmutableCollectionTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Types; diff --git a/src/Types/ImmutableComponentTrait.php b/src/Types/ImmutableComponentTrait.php index ffb526b79..a9877a3bb 100644 --- a/src/Types/ImmutableComponentTrait.php +++ b/src/Types/ImmutableComponentTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Types; diff --git a/src/Types/ImmutablePropertyTrait.php b/src/Types/ImmutablePropertyTrait.php index 8e6a2484d..88e6befe8 100644 --- a/src/Types/ImmutablePropertyTrait.php +++ b/src/Types/ImmutablePropertyTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Types; diff --git a/src/Types/TranscoderTrait.php b/src/Types/TranscoderTrait.php index 9de56a041..cde3ffeb0 100644 --- a/src/Types/TranscoderTrait.php +++ b/src/Types/TranscoderTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Types; diff --git a/src/Types/ValidatorTrait.php b/src/Types/ValidatorTrait.php index 2e584a265..377e3c2ea 100644 --- a/src/Types/ValidatorTrait.php +++ b/src/Types/ValidatorTrait.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri\Types; diff --git a/src/UriParser.php b/src/UriParser.php index 79b5c4bd5..b197d057e 100644 --- a/src/UriParser.php +++ b/src/UriParser.php @@ -6,7 +6,7 @@ * @author Ignace Nyamagana Butera * @copyright 2013-2015 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri/blob/master/LICENSE (MIT License) - * @version 4.2.0 + * @version 4.1.0 * @link https://github.com/thephpleague/uri/ */ namespace League\Uri;