diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6334f7..1f19dddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ - All Notable changes to `uri-manipulations` will be documented in this file +## 1.2.0 - 2017-11-22 + +### Added + +- None + +### Fixed + +- Update League Uri Components version + +### Deprecated + +- None + +### Removed + +- Nonce + ## 1.1.0 - 2017-10-25 ### Added diff --git a/composer.json b/composer.json index 1f9f1cfb..b2c994d6 100644 --- a/composer.json +++ b/composer.json @@ -30,9 +30,8 @@ }, "minimun-stability" : "dev", "require": { - "jeremykendall/php-domain-parser": "4.0.3-alpha", + "league/uri-components": "^1.4", "league/uri-interfaces": "^1.0", - "league/uri-components": "^1.1", "php" : ">=7.0", "psr/http-message": "^1.0" }, diff --git a/src/Modifiers/AddBasePath.php b/src/Modifiers/AddBasePath.php index 047f2a1e..aefcfb65 100644 --- a/src/Modifiers/AddBasePath.php +++ b/src/Modifiers/AddBasePath.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddLeadingSlash.php b/src/Modifiers/AddLeadingSlash.php index 61eea8f2..ecfbb5de 100644 --- a/src/Modifiers/AddLeadingSlash.php +++ b/src/Modifiers/AddLeadingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddRootLabel.php b/src/Modifiers/AddRootLabel.php index f7825850..497d0df2 100644 --- a/src/Modifiers/AddRootLabel.php +++ b/src/Modifiers/AddRootLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AddTrailingSlash.php b/src/Modifiers/AddTrailingSlash.php index 32a87b01..c8694f05 100644 --- a/src/Modifiers/AddTrailingSlash.php +++ b/src/Modifiers/AddTrailingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendLabel.php b/src/Modifiers/AppendLabel.php index e0aaff18..7100dfb6 100644 --- a/src/Modifiers/AppendLabel.php +++ b/src/Modifiers/AppendLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendQuery.php b/src/Modifiers/AppendQuery.php index dbc2885f..b5d7ac32 100644 --- a/src/Modifiers/AppendQuery.php +++ b/src/Modifiers/AppendQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/AppendSegment.php b/src/Modifiers/AppendSegment.php index 41390969..16fdaeae 100644 --- a/src/Modifiers/AppendSegment.php +++ b/src/Modifiers/AppendSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Basename.php b/src/Modifiers/Basename.php index a3ca0b90..a6af8e26 100644 --- a/src/Modifiers/Basename.php +++ b/src/Modifiers/Basename.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/CallableAdapter.php b/src/Modifiers/CallableAdapter.php index d7029a9c..70f7341a 100644 --- a/src/Modifiers/CallableAdapter.php +++ b/src/Modifiers/CallableAdapter.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriParameters.php b/src/Modifiers/DataUriParameters.php index 4a65d34b..c7e54ad1 100644 --- a/src/Modifiers/DataUriParameters.php +++ b/src/Modifiers/DataUriParameters.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriToAscii.php b/src/Modifiers/DataUriToAscii.php index 223a878c..c9b4261c 100644 --- a/src/Modifiers/DataUriToAscii.php +++ b/src/Modifiers/DataUriToAscii.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DataUriToBinary.php b/src/Modifiers/DataUriToBinary.php index 1b65ced1..1ef7926d 100644 --- a/src/Modifiers/DataUriToBinary.php +++ b/src/Modifiers/DataUriToBinary.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/DecodeUnreservedCharacters.php b/src/Modifiers/DecodeUnreservedCharacters.php index f898bd9e..28221f0c 100644 --- a/src/Modifiers/DecodeUnreservedCharacters.php +++ b/src/Modifiers/DecodeUnreservedCharacters.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Dirname.php b/src/Modifiers/Dirname.php index 91017bc9..60d77a81 100644 --- a/src/Modifiers/Dirname.php +++ b/src/Modifiers/Dirname.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Exception.php b/src/Modifiers/Exception.php index 2da4ef28..eebda0a8 100644 --- a/src/Modifiers/Exception.php +++ b/src/Modifiers/Exception.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Extension.php b/src/Modifiers/Extension.php index 8f9d3894..566c2f44 100644 --- a/src/Modifiers/Extension.php +++ b/src/Modifiers/Extension.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Formatter.php b/src/Modifiers/Formatter.php index afe41066..adfcd4fe 100644 --- a/src/Modifiers/Formatter.php +++ b/src/Modifiers/Formatter.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostMiddlewareTrait.php b/src/Modifiers/HostMiddlewareTrait.php index ff8385d3..0f609f45 100644 --- a/src/Modifiers/HostMiddlewareTrait.php +++ b/src/Modifiers/HostMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostToAscii.php b/src/Modifiers/HostToAscii.php index 29a12c22..6baa047e 100644 --- a/src/Modifiers/HostToAscii.php +++ b/src/Modifiers/HostToAscii.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/HostToUnicode.php b/src/Modifiers/HostToUnicode.php index 285940cb..e0d6d0bf 100644 --- a/src/Modifiers/HostToUnicode.php +++ b/src/Modifiers/HostToUnicode.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/KsortQuery.php b/src/Modifiers/KsortQuery.php index b8737c3b..791a853d 100644 --- a/src/Modifiers/KsortQuery.php +++ b/src/Modifiers/KsortQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/MergeQuery.php b/src/Modifiers/MergeQuery.php index f2646880..1b31fb84 100644 --- a/src/Modifiers/MergeQuery.php +++ b/src/Modifiers/MergeQuery.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Normalize.php b/src/Modifiers/Normalize.php index efc09895..49024f68 100644 --- a/src/Modifiers/Normalize.php +++ b/src/Modifiers/Normalize.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PathMiddlewareTrait.php b/src/Modifiers/PathMiddlewareTrait.php index 0fd3071c..d42e0623 100644 --- a/src/Modifiers/PathMiddlewareTrait.php +++ b/src/Modifiers/PathMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Pipeline.php b/src/Modifiers/Pipeline.php index 52f1c767..56920c76 100644 --- a/src/Modifiers/Pipeline.php +++ b/src/Modifiers/Pipeline.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PrependLabel.php b/src/Modifiers/PrependLabel.php index 78bcd0e6..349145b0 100644 --- a/src/Modifiers/PrependLabel.php +++ b/src/Modifiers/PrependLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/PrependSegment.php b/src/Modifiers/PrependSegment.php index 5eefed54..68881655 100644 --- a/src/Modifiers/PrependSegment.php +++ b/src/Modifiers/PrependSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/QueryMiddlewareTrait.php b/src/Modifiers/QueryMiddlewareTrait.php index 7ff5fa33..2dd08e76 100644 --- a/src/Modifiers/QueryMiddlewareTrait.php +++ b/src/Modifiers/QueryMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RegisterableDomain.php b/src/Modifiers/RegisterableDomain.php index 966f88a3..3a38c609 100644 --- a/src/Modifiers/RegisterableDomain.php +++ b/src/Modifiers/RegisterableDomain.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveBasePath.php b/src/Modifiers/RemoveBasePath.php index e985f94e..b7be8b76 100644 --- a/src/Modifiers/RemoveBasePath.php +++ b/src/Modifiers/RemoveBasePath.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveDotSegments.php b/src/Modifiers/RemoveDotSegments.php index 32effc05..2145a9bb 100644 --- a/src/Modifiers/RemoveDotSegments.php +++ b/src/Modifiers/RemoveDotSegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveEmptySegments.php b/src/Modifiers/RemoveEmptySegments.php index b7127230..41e496d6 100644 --- a/src/Modifiers/RemoveEmptySegments.php +++ b/src/Modifiers/RemoveEmptySegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveLabels.php b/src/Modifiers/RemoveLabels.php index 0a6c99e9..a997183f 100644 --- a/src/Modifiers/RemoveLabels.php +++ b/src/Modifiers/RemoveLabels.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveLeadingSlash.php b/src/Modifiers/RemoveLeadingSlash.php index fc95b04c..0168892d 100644 --- a/src/Modifiers/RemoveLeadingSlash.php +++ b/src/Modifiers/RemoveLeadingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveQueryKeys.php b/src/Modifiers/RemoveQueryKeys.php index fcea884c..9334a0c4 100644 --- a/src/Modifiers/RemoveQueryKeys.php +++ b/src/Modifiers/RemoveQueryKeys.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveRootLabel.php b/src/Modifiers/RemoveRootLabel.php index 52d25407..86e7cd9a 100644 --- a/src/Modifiers/RemoveRootLabel.php +++ b/src/Modifiers/RemoveRootLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveSegments.php b/src/Modifiers/RemoveSegments.php index 534f27e6..f6ebe814 100644 --- a/src/Modifiers/RemoveSegments.php +++ b/src/Modifiers/RemoveSegments.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveTrailingSlash.php b/src/Modifiers/RemoveTrailingSlash.php index eba9f91a..aa40eeb5 100644 --- a/src/Modifiers/RemoveTrailingSlash.php +++ b/src/Modifiers/RemoveTrailingSlash.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/RemoveZoneIdentifier.php b/src/Modifiers/RemoveZoneIdentifier.php index b55dbd1f..2f070bb9 100644 --- a/src/Modifiers/RemoveZoneIdentifier.php +++ b/src/Modifiers/RemoveZoneIdentifier.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/ReplaceLabel.php b/src/Modifiers/ReplaceLabel.php index 490e5f64..a29fc7e0 100644 --- a/src/Modifiers/ReplaceLabel.php +++ b/src/Modifiers/ReplaceLabel.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/ReplaceSegment.php b/src/Modifiers/ReplaceSegment.php index 2e0a8056..f5685653 100644 --- a/src/Modifiers/ReplaceSegment.php +++ b/src/Modifiers/ReplaceSegment.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Resolve.php b/src/Modifiers/Resolve.php index 4087b02f..440169d7 100644 --- a/src/Modifiers/Resolve.php +++ b/src/Modifiers/Resolve.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/Subdomain.php b/src/Modifiers/Subdomain.php index b2ca9eea..e1a257b0 100644 --- a/src/Modifiers/Subdomain.php +++ b/src/Modifiers/Subdomain.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/UriMiddlewareInterface.php b/src/Modifiers/UriMiddlewareInterface.php index e6a8d0fe..98479c76 100644 --- a/src/Modifiers/UriMiddlewareInterface.php +++ b/src/Modifiers/UriMiddlewareInterface.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/Modifiers/UriMiddlewareTrait.php b/src/Modifiers/UriMiddlewareTrait.php index c88f763d..a4603b04 100644 --- a/src/Modifiers/UriMiddlewareTrait.php +++ b/src/Modifiers/UriMiddlewareTrait.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); diff --git a/src/functions.php b/src/functions.php index 55067648..a5771504 100644 --- a/src/functions.php +++ b/src/functions.php @@ -7,7 +7,7 @@ * @author Ignace Nyamagana Butera * @copyright 2017 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-manipulations/blob/master/LICENSE (MIT License) - * @version 1.1.0 + * @version 1.2.0 * @link https://github.com/thephpleague/uri-manipulations */ declare(strict_types=1); @@ -306,7 +306,7 @@ function path_to_binary($uri) /** * Prepend a label or a host to the current URI host * - * @see Modifiers\AppendLabel::modifyHost() + * @see Modifiers\PrependLabel::modifyHost() * * @param Uri|UriInterface $uri * @param string $host @@ -486,7 +486,7 @@ function remove_trailing_slash($uri) /** * Remove path segments from the URI path according to their offsets * - * @see Modifiers\PrependSegment::modifyPath() + * @see Modifiers\RemoveSegments::modifyPath() * * @param Uri|UriInterface $uri * @param int[] $keys @@ -564,7 +564,7 @@ function replace_dirname($uri, string $path) /** * Replace the URI path basename extension * - * @see Modifiers\Dirname::modifyPath() + * @see Modifiers\Extension::modifyPath() * * @param Uri|UriInterface $uri * @param string $extension